32 #ifndef STRUCT_CONFIGPROPERTIES_HPP_ 33 #define STRUCT_CONFIGPROPERTIES_HPP_ 70 const std::string& setModule,
71 const std::string& setName,
72 const std::string& setConfig
73 ) : module(setModule), name(setName), config(setConfig) {}
ConfigProperties()=default
Default constructor.
std::string module
The name of the module using the configuration.
Definition: ConfigProperties.hpp:45
ConfigProperties(const std::string &setModule, const std::string &setName, const std::string &setConfig)
Constructor setting module, name and configuration string.
Definition: ConfigProperties.hpp:69
std::string config
The configuration string containing JSON.
Definition: ConfigProperties.hpp:51
std::string name
The name of the configuration.
Definition: ConfigProperties.hpp:48
Namespace for data structures.
Definition: AlgoThreadProperties.hpp:43
Configuration properties containing its module, name, and JSON string.
Definition: ConfigProperties.hpp:40