Changeset 7145 in orxonox.OLD
- Timestamp:
- Feb 14, 2006, 7:52:11 PM (19 years ago)
- Location:
- branches/qt_gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/qt_gui/configure.ac
r7142 r7145 147 147 #-------------# 148 148 WITH_QT=yes 149 AC_MSG_CHECKING([if we use QT for the gui])149 AC_MSG_CHECKING([if we want to use QT for the gui.]) 150 150 AC_ARG_WITH([modular-debug], 151 151 AS_HELP_STRING([--without-qt], [does not use QT for the display of the GUI]), 152 152 WITH_QT=$enableval) 153 154 153 if test x$WITH_QT = xno; then 155 154 echo "no" -
branches/qt_gui/src/lib/gui/qt_gui/gui_saveable.h
r7143 r7145 19 19 20 20 public: 21 virtual void load(const MultiType& value) = 0;22 virtual const MultiType& save() = 0;23 24 21 25 22 protected: 26 23 GuiSaveable(); 27 24 virtual ~GuiSaveable(); 25 26 virtual void load(const MultiType& value) = 0; 27 virtual const MultiType& save() = 0; 28 28 29 29 private: … … 37 37 GuiGroup(const std::string& name); 38 38 ~GuiGroup(); 39 39 40 private: 40 41
Note: See TracChangeset
for help on using the changeset viewer.