EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
SimpleConfig.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CORE_SIMPLECONFIG_HPP_
2 #define ORG_EEROS_CORE_SIMPLECONFIG_HPP_
3 
4 #include <eeros/core/Config.hpp>
5 
6 namespace eeros {
7 
8  class SimpleConfig : public Config {
9  public:
10  SimpleConfig(const char *path = nullptr);
11  virtual ~SimpleConfig();
12 
13  virtual bool save(const char *path = nullptr);
14  virtual bool load(const char *path = nullptr);
15 
16  static constexpr int buffer_size = 256;
17  };
18 
19 };
20 
21 #endif // ORG_EEROS_CORE_SIMPLECONFIG_HPP_
virtual bool load(const char *path=nullptr)
Definition: SimpleConfig.cpp:44
virtual ~SimpleConfig()
Definition: SimpleConfig.cpp:21
const char * path
Definition: Config.hpp:38
SimpleConfig(const char *path=nullptr)
Definition: SimpleConfig.cpp:19
virtual bool save(const char *path=nullptr)
Definition: SimpleConfig.cpp:23
static constexpr int buffer_size
Definition: SimpleConfig.hpp:16
Definition: Config.hpp:25
Definition: SimpleConfig.hpp:8