1 // WorkView.h 2 3 #ifndef WORK_VIEW_H 4 #define WORK_VIEW_H 5 6 #include <View.h> 7 8 class WorkView : public BView { 9 public: 10 WorkView(BRect frame); 11 12 virtual void AttachedToWindow(); 13 virtual void Pulse(); 14 15 private: 16 bool fbImage; 17 const char *fPath; 18 }; 19 20 #endif