xref: /haiku/src/apps/poorman/PoorManView.h (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
1 /* PoorManView.h
2  *
3  *	Philip Harrison
4  *	Started: 4/25/2004
5  *	Version: 0.1
6  */
7 
8 #ifndef POOR_MAN_VIEW_H
9 #define POOR_MAN_VIEW_H
10 
11 #ifndef _VIEW_H
12 #include <View.h>
13 #endif
14 
15 class PoorManView: public BView
16 {
17 public:
18 				PoorManView(BRect, char *name);
19 virtual	void	AttachedToWindow();
20 };
21 
22 #endif
23