1/*
2 * Copyright 2009 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef OPENGL_WINDOW_H
6#define OPENGL_WINDOW_H
7
8
9#include <Window.h>
10
11#include "OpenGLView.h"
12
13
14class OpenGLWindow : public BWindow {
15public:
16								OpenGLWindow();
17		virtual					~OpenGLWindow();
18
19		virtual	bool			QuitRequested();
20		virtual	void			MessageReceived(BMessage* message);
21
22private:
23				OpenGLView*		fView;
24};
25
26
27#endif	/* OPENGL_WINDOW_H */
28