btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / apps / glteapot / TeapotApp.h
blob3a35ec4ab6ac275f2ce3df5d4d0898bb2c6ee59d
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 #ifndef _TEAPOT_APP_
6 #define _TEAPOT_APP_
9 #include <Application.h>
11 #include "TeapotWindow.h"
14 class TeapotApp : public BApplication {
15 public:
16 TeapotApp(const char* sign);
17 virtual void MessageReceived(BMessage* msg);
19 private:
20 TeapotWindow* fTeapotWindow;
23 #endif