Changeset 7143 in orxonox.OLD
- Timestamp:
- Feb 14, 2006, 7:23:28 PM (19 years ago)
- Location:
- branches/qt_gui/src/lib/gui/qt_gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/qt_gui/src/lib/gui/qt_gui/gui_saveable.cc
r7140 r7143 38 38 // delete what has to be deleted here 39 39 } 40 41 42 GuiGroup::GuiGroup(const std::string& name) 43 { 44 45 } 46 47 48 GuiGroup::~GuiGroup() 49 { 50 51 52 } -
branches/qt_gui/src/lib/gui/qt_gui/gui_saveable.h
r7140 r7143 9 9 #include "base_object.h" 10 10 #include "multi_type.h" 11 #include <list> 12 #include <string> 11 13 12 14 // FORWARD DECLARATION 15 13 16 14 17 //! A class for ... … … 28 31 }; 29 32 33 34 class GuiGroup 35 { 36 public: 37 GuiGroup(const std::string& name); 38 ~GuiGroup(); 39 private: 40 41 }; 42 43 30 44 #endif /* _GUI_SAVEABLE_H */
Note: See TracChangeset
for help on using the changeset viewer.