Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/gui/gui/orxonox_gui_element.h @ 4024

Last change on this file since 4024 was 4024, checked in by bensch, 19 years ago

orxonox/trunk: gui: more addaptive structure

File size: 481 bytes
Line 
1/*!
2    \file orxonox_gui_element.h
3    \brief Definition of ...
4
5*/
6
7#ifndef _ORXONOX_GUI_ELEMENT_H
8#define _ORXONOX_GUI_ELEMENT_H
9
10#include "orxonox_gui_gtk.h"
11
12// FORWARD DEFINITION
13
14
15
16//! A class for ...
17class OrxonoxGuiElement {
18
19 public:
20  OrxonoxGuiElement();
21  virtual ~OrxonoxGuiElement();
22 
23  Widget* getWidget(void) {return this->mainWidget;}
24 protected:
25  void setMainWidget(Widget* widget);
26 
27 private:
28  Widget* mainWidget;
29};
30
31#endif /* _ORXONOX_GUI_ELEMENT_H */
Note: See TracBrowser for help on using the repository browser.