repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / glteapot / TeapotWindow.h
blob689c4ce5698fa9de0635d6889e559287d5614091
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 */
6 #ifndef _TEAPOT_WINDOW_
7 #define _TEAPOT_WINDOW_
10 #include <DirectWindow.h>
12 #include "ObjectView.h"
15 class TeapotWindow : public BDirectWindow {
16 public:
17 TeapotWindow(BRect r, const char* name, window_type wt,
18 ulong something);
20 virtual bool QuitRequested();
21 virtual void DirectConnected( direct_buffer_info* info );
22 virtual void MessageReceived(BMessage* msg);
24 private:
25 ObjectView* fObjectView;
29 #endif