22 #include "softwarecontainer-common.h" 23 #include "configtypes.h" 31 ConfigItem(
const std::string &group,
const std::string &name);
34 std::string key()
const;
35 std::string group()
const;
36 void setSource(ConfigSourceType type);
37 ConfigSourceType source()
const;
42 ConfigSourceType m_source;
49 StringConfig(
const std::string &group,
const std::string &name, std::string value);
62 IntConfig(
const std::string &group,
const std::string &name,
int value);
75 BoolConfig(
const std::string &group,
const std::string &name,
bool value);
Represents a config item of type bool.
Represents a config item of type string.
Base class for all config item types.
Developers guide to adding a config item:
Represents a config item of type int.