Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma once
#include <ftl/configurable.hpp>
#include <voltu/types/property.hpp>
#include <string>
namespace voltu
{
namespace internal
{
class CfgPropertyImpl : public voltu::Property
{
public:
CfgPropertyImpl(ftl::Configurable *cfg, const std::string &name);
virtual ~CfgPropertyImpl() override;
virtual void setInt(int) override;
virtual void setFloat(float) override;
virtual void setString(const std::string &) override;
virtual void setBool(bool) override;
virtual int getInt() override;
virtual float getFloat() override;
virtual std::string getString() override;
virtual bool getBool() override;
private:
ftl::Configurable *cfg_;
std::string name_;
};
/*class FloatCfgProperty : public CfgPropertyImpl
{
public:
FloatCfgProperty(ftl::Configurable *cfg, const std::string &name);
~FloatCfgProperty() override;
void setFloat(float) override;
float getFloat() override;
};*/
}
}