23 lines
412 B
C
23 lines
412 B
C
|
#ifndef BSP_Q7S_CORE_PARAMETERHANDLER_H_
|
||
|
#define BSP_Q7S_CORE_PARAMETERHANDLER_H_
|
||
|
|
||
|
#include <nlohmann/json.hpp>
|
||
|
#include <string>
|
||
|
|
||
|
|
||
|
|
||
|
class ParameterHandler {
|
||
|
public:
|
||
|
ParameterHandler(std::string mountPrefix);
|
||
|
|
||
|
void setMountPrefix(std::string prefix);
|
||
|
|
||
|
void setUpDummyParameter();
|
||
|
private:
|
||
|
std::string mountPrefix;
|
||
|
DummyParameter dummyParam;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif /* BSP_Q7S_CORE_PARAMETERHANDLER_H_ */
|