Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gui_element.h @ 9715

Last change on this file since 9715 was 7661, checked in by bensch, 18 years ago

orxonox/trunk: merged the QT_GUI back to the trunk
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/qt_gui . -r7607:HEAD

absolutely no conflicts :)

File size: 398 bytes
RevLine 
[7470]1/*!
[5039]2 * @file gui_element.h
[7470]3 *  Definition of ...
[3329]4
[3245]5*/
[1853]6
[4048]7#ifndef _GUI_ELEMENT_H
8#define _GUI_ELEMENT_H
[1853]9
[7478]10#include "gui_saveable.h"
11
[7470]12namespace OrxGui
13{
[7476]14  class Widget;
[7549]15  class Gui;
[7476]16
[7470]17  //! A SuperClass for all the Different GuiElements
[7484]18  class Element : public SaveableGroup
[7470]19  {
20  public:
[7549]21    Element(const std::string& name, OrxGui::Gui* gui);
[7484]22    virtual ~Element();
[7470]23  };
24}
[4048]25#endif /* _GUI_ELEMENT_H */
Note: See TracBrowser for help on using the repository browser.