Dilbert
Firmware for the Dilbert interactive badge.
 All Classes Files Functions Variables Enumerations Macros Pages
IConfigStorage.h
Go to the documentation of this file.
1 
3 #ifndef _ICONFIGSTORAGE_H_
4 #define _ICONFIGSTORAGE_H_
5 
6 #include "SystemConfigData.h"
7 
14 {
15 public:
17  {
18  }
19  virtual ~IConfigStorage()
20  {
21  }
22 
28  virtual bool save(SystemConfigData *data) = 0;
29 
35  virtual bool load(SystemConfigData *data) = 0;
36 };
37 
38 #endif
Used to store system configuration data.
Definition: SystemConfigData.h:26
virtual bool save(SystemConfigData *data)=0
Saves a system configuration.
Interface for configuration storage.
Definition: IConfigStorage.h:13
virtual bool load(SystemConfigData *data)=0
Loads a system configuration.