Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef AIKAPP
00022 #define AIKAPP
00023
00024 #ifdef _MSC_VER
00025 #pragma warning(disable: 4786)
00026 #endif
00027
00028 #include <windows.h>
00029 #include <string>
00030 using namespace std;
00031
00032 class AiksaurusApp
00033 {
00034 public:
00035 AiksaurusApp();
00036 virtual ~AiksaurusApp();
00037
00038 void setTitle( char * title );
00039 void setInitialMessage( char * msg );
00040 const char* runThesaurus( char * word );
00041
00042 void initialize();
00043 HINSTANCE getInstance() { return m_hInstance; }
00044 void setInstance(HINSTANCE hI) { m_hInstance = hI; }
00045 void setLookup( char * word );
00046
00047 private:
00048 HINSTANCE m_hInstance;
00049 string lookup;
00050 string replace;
00051 };
00052
00053 #endif