git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8455 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
297 B
C++
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
|