xref: /haiku/src/tests/kits/opengl/glinfo/OpenGLApp.h (revision 25a7b01d15612846f332751841da3579db313082)
1 /*
2  * Copyright 2009 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef OPENGL_APP_H
6 #define OPENGL_APP_H
7 
8 
9 #include <Application.h>
10 #include <Catalog.h>
11 
12 #include "OpenGLWindow.h"
13 
14 
15 class OpenGLApp : public BApplication {
16 public:
17 								OpenGLApp();
18 		virtual					~OpenGLApp();
19 
20 		virtual	void			ReadyToRun();
21 
22 private:
23 				OpenGLWindow*	fWindow;
24 };
25 
26 
27 #endif	/* OPENGL_APP_H_ */
28