xref: /haiku/src/apps/poorman/PoorManApplication.h (revision 508f54795f39c3e7552d87c95aae9dd8ec6f505b)
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 class PoorManWindow;
15 //#include "PoorManPreferencesWindow.h"
16 
17 
18 class PoorManApplication: public BApplication
19 {
20 public:
21 					PoorManApplication();
22 			void	AboutRequested();
23 	virtual void	MessageReceived(BMessage *message);
24 	PoorManWindow *	GetPoorManWindow() { return mainWindow; }
25 private:
26 			PoorManWindow				* mainWindow;
27 			//PoorManPreferencesWindow	* prefWindow;
28 
29 			// --------------------------------------------
30 			// settings variables
31 			//bool	status;
32 			//char	directory[512];
33 			//uint32	hits;
34 
35 };
36 
37 #endif
38