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