eive-obsw/bsp_q7s/core/ParameterHandler.h

21 lines
402 B
C
Raw Normal View History

2021-07-16 21:51:30 +02:00
#ifndef BSP_Q7S_CORE_PARAMETERHANDLER_H_
#define BSP_Q7S_CORE_PARAMETERHANDLER_H_
#include <nlohmann/json.hpp>
#include <string>
class ParameterHandler {
2022-01-17 15:58:27 +01:00
public:
ParameterHandler(std::string mountPrefix);
2021-07-16 21:51:30 +02:00
2022-01-17 15:58:27 +01:00
void setMountPrefix(std::string prefix);
2021-07-16 21:51:30 +02:00
2022-01-17 15:58:27 +01:00
void setUpDummyParameter();
2021-07-16 21:51:30 +02:00
2022-01-17 15:58:27 +01:00
private:
std::string mountPrefix;
DummyParameter dummyParam;
};
2021-07-16 21:51:30 +02:00
#endif /* BSP_Q7S_CORE_PARAMETERHANDLER_H_ */