1450bb3e5SStephan Aßmus /* 2450bb3e5SStephan Aßmus Copyright 1999, Be Incorporated. All Rights Reserved. 3450bb3e5SStephan Aßmus This file may be used under the terms of the Be Sample Code License. 4450bb3e5SStephan Aßmus */ 5450bb3e5SStephan Aßmus #ifndef _TEAPOT_APP_ 6450bb3e5SStephan Aßmus #define _TEAPOT_APP_ 7450bb3e5SStephan Aßmus 8*11c7ff53SJonas Sundström 9450bb3e5SStephan Aßmus #include <Application.h> 10*11c7ff53SJonas Sundström 11450bb3e5SStephan Aßmus #include "TeapotWindow.h" 12450bb3e5SStephan Aßmus 13*11c7ff53SJonas Sundström 14450bb3e5SStephan Aßmus class TeapotApp : public BApplication { 15450bb3e5SStephan Aßmus public: 16450bb3e5SStephan Aßmus TeapotApp(const char* sign); 17450bb3e5SStephan Aßmus virtual void MessageReceived(BMessage* msg); 18*11c7ff53SJonas Sundström 19450bb3e5SStephan Aßmus private: 20450bb3e5SStephan Aßmus TeapotWindow* fTeapotWindow; 21450bb3e5SStephan Aßmus }; 22*11c7ff53SJonas Sundström 23450bb3e5SStephan Aßmus #endif 24