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
14class PoorManWindow;
15//#include "PoorManPreferencesWindow.h"
16
17
18class PoorManApplication: public BApplication
19{
20public:
21					PoorManApplication();
22	virtual void	MessageReceived(BMessage *message);
23	PoorManWindow *	GetPoorManWindow() { return mainWindow; }
24private:
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