xref: /haiku/src/tests/kits/opengl/glinfo/InfoView.h (revision 25a7b01d15612846f332751841da3579db313082)
1*70c51973SJohn Scipione /*
2*70c51973SJohn Scipione  * Copyright 2009 Haiku Inc. All rights reserved.
3*70c51973SJohn Scipione  * Distributed under the terms of the MIT License.
4*70c51973SJohn Scipione  */
5*70c51973SJohn Scipione #ifndef INFO_VIEW_H
6*70c51973SJohn Scipione #define INFO_VIEW_H
7*70c51973SJohn Scipione 
8*70c51973SJohn Scipione 
9*70c51973SJohn Scipione #include <GroupView.h>
10*70c51973SJohn Scipione 
11*70c51973SJohn Scipione 
12*70c51973SJohn Scipione class InfoView : public BGroupView {
13*70c51973SJohn Scipione public:
14*70c51973SJohn Scipione 								InfoView();
15*70c51973SJohn Scipione 		virtual					~InfoView();
16*70c51973SJohn Scipione };
17*70c51973SJohn Scipione 
18*70c51973SJohn Scipione 
19*70c51973SJohn Scipione #endif	/* INFO_VIEW_H */
20