1*450bb3e5SStephan Aßmus /* 2*450bb3e5SStephan Aßmus Copyright 1999, Be Incorporated. All Rights Reserved. 3*450bb3e5SStephan Aßmus This file may be used under the terms of the Be Sample Code License. 4*450bb3e5SStephan Aßmus */ 5*450bb3e5SStephan Aßmus 6*450bb3e5SStephan Aßmus #ifndef _TEAPOT_APP_ 7*450bb3e5SStephan Aßmus #define _TEAPOT_APP_ 8*450bb3e5SStephan Aßmus 9*450bb3e5SStephan Aßmus #include <Application.h> 10*450bb3e5SStephan Aßmus #include "TeapotWindow.h" 11*450bb3e5SStephan Aßmus 12*450bb3e5SStephan Aßmus class TeapotApp : public BApplication { 13*450bb3e5SStephan Aßmus public: 14*450bb3e5SStephan Aßmus TeapotApp(const char* sign); 15*450bb3e5SStephan Aßmus virtual void MessageReceived(BMessage* msg); 16*450bb3e5SStephan Aßmus // void AboutRequested(); 17*450bb3e5SStephan Aßmus private: 18*450bb3e5SStephan Aßmus TeapotWindow* fTeapotWindow; 19*450bb3e5SStephan Aßmus }; 20*450bb3e5SStephan Aßmus #endif 21