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