Files
haiku-beta6/src/apps/poorman/PoorManView.h
T
Phil Greenway 4af8c448e2 Initial Checkin. Code by sl9c5 ([email protected])
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8455 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-07-23 04:42:55 +00:00

23 lines
297 B
C++

/* PoorManView.h
*
* Philip Harrison
* Started: 4/25/2004
* Version: 0.1
*/
#ifndef POOR_MAN_VIEW_H
#define POOR_MAN_VIEW_H
#ifndef _VIEW_H
#include <View.h>
#endif
class PoorManView: public BView
{
public:
PoorManView(BRect, char *name);
virtual void AttachedToWindow();
};
#endif