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