Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/qt_gui/src/lib/gui/qt_gui/gui_saveable.h @ 7143

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

compiling

File size: 613 bytes
Line 
1/*!
2 * @file gui_saveable.h
3 * @brief Definition of ...
4*/
5
6#ifndef _GUI_SAVEABLE_H
7#define _GUI_SAVEABLE_H
8
9#include "base_object.h"
10#include "multi_type.h"
11#include <list>
12#include <string>
13
14// FORWARD DECLARATION
15
16
17//! A class for ...
18class GuiSaveable : virtual public BaseObject {
19
20 public:
21   virtual void load(const MultiType& value) = 0;
22   virtual const MultiType& save() = 0;
23
24
25protected:
26  GuiSaveable();
27  virtual ~GuiSaveable();
28
29 private:
30   MultiType       value;
31};
32
33
34class GuiGroup
35{
36  public:
37    GuiGroup(const std::string& name);
38    ~GuiGroup();
39  private:
40
41};
42
43
44#endif /* _GUI_SAVEABLE_H */
Note: See TracBrowser for help on using the repository browser.