00001 # ifndef SomeClass_h 00002 # define SomeClass_h SomeClass_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 // Created <CreateDate/> by <Creator/> 00020 00021 # include "Root.h" // parent 00022 00023 namespace Conjecture { 00024 00025 /******************************************************************* 00026 * \class SomeClass 00027 * 00028 * \brief 00029 * 00030 * ... 00031 *///**************************************************************** 00032 class SomeClass : public Root { 00033 public: 00034 // Constructors/Destructors 00035 SomeClass(); 00036 00037 // ************** 00038 // Interface 00039 static void Test(int argc = 0, const char* argv[] = NULL); 00040 00041 // ************** 00042 // Accessors 00043 protected: 00044 // ************** 00045 // Methods 00046 00047 // ************** 00048 // Accessors 00049 private: 00050 // ************** 00051 // Methods 00052 00053 // ************** 00054 // Accessors 00055 00056 // ************** 00057 // State 00058 }; 00059 } 00060 00061 # endif // SomeClass_h 00062