1 /* PoorManApplication.h 2 * 3 * Philip Harrison 4 * Started: 4/25/2004 5 * Version: 0.1 6 */ 7 8 #ifndef POOR_MAN_APPLICATION_H 9 #define POOR_MAN_APPLICATION_H 10 11 12 #include <Application.h> 13 14 #include "PoorManWindow.h" 15 #include "PoorManPreferencesWindow.h" 16 17 18 class PoorManApplication: public BApplication 19 { 20 public: 21 PoorManApplication(); 22 void AboutRequested(); 23 PoorManWindow * GetPoorManWindow() { return mainWindow; } 24 private: 25 PoorManWindow * mainWindow; 26 PoorManPreferencesWindow * prefWindow; 27 28 // -------------------------------------------- 29 // settings variables 30 bool status; 31 char directory[512]; 32 uint32 hits; 33 34 }; 35 36 #endif 37