1 /* PoorManView.cpp 2 * 3 * Philip Harrison 4 * Started: 4/25/2004 5 * Version: 0.1 6 */ 7 8 #ifndef POOR_MAN_VIEW_H 9 #include "PoorManView.h" 10 #endif 11 12 PoorManView::PoorManView(BRect rect, const char *name) 13 : BView(rect, name, B_FOLLOW_ALL, B_WILL_DRAW) 14 { 15 } 16 17 void 18 PoorManView::AttachedToWindow() 19 { 20 } 21