00001 # ifndef WmhFormat_h 00002 # define WmhFormat_h WmhFormat_h 00003 00004 // #################################################################### 00005 // # Conjecture: An Extensible Optical Character Recognition Framework # 00006 // # # 00007 // # Copyright: Lesser GNU Public License (LGPL) # 00008 // # # 00009 // # Overview: # 00010 // # - Conjecture is a collection of C++ classes, and an OCR engine # 00011 // # - Conjecture is designed to allow customization at all levels # 00012 // # and to encourage individuals to contribute incremental # 00013 // # improvements in algorithms. # 00014 // # - Overall design discussions can be found in # 00015 // # $SNROOT/docs/doxygen/html/index.html # 00016 // # - Conjecture is designed to interact with and build on other # 00017 // # open-source OCR programs. # 00018 // #################################################################### 00019 00020 # include "FormatComponent.h" // parent 00021 00022 namespace Conjecture { 00023 00024 // ################################################################## 00030 // ################################################################## 00031 class WmhFormat : public FormatComponent { 00032 public: 00033 // Constructors/Destructors 00034 WmhFormat(); 00035 00036 // ************** 00037 // Accessors 00038 00039 // ************** 00040 // Input/Output 00041 00042 // ************** 00043 // Interface 00044 virtual bool execute(Page* page); 00045 00046 00047 protected: 00048 // ************** 00049 // Accessors 00050 00051 // ************** 00052 // Methods 00053 00054 private: 00055 // ************** 00056 // Accessors 00057 00058 // ************** 00059 // Methods 00060 00061 // ************** 00062 // State 00063 }; 00064 } 00065 00066 # endif // WmhFormat_h 00067