Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

sync

File size: 612 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
22protected:
23  GuiSaveable();
24  virtual ~GuiSaveable();
25
26  virtual void load(const MultiType& value) = 0;
27  virtual const MultiType& save() = 0;
28
29 private:
30   MultiType       value;
31};
32
33
34class GuiGroup
35{
36  public:
37    GuiGroup(const std::string& name);
38    ~GuiGroup();
39
40  private:
41
42};
43
44
45#endif /* _GUI_SAVEABLE_H */
Note: See TracBrowser for help on using the repository browser.