19 lines
601 B
C++
19 lines
601 B
C++
#ifndef SETTINGS_HANDLER_CONFIG_H
|
|
#define SETTINGS_HANDLER_CONFIG_H
|
|
|
|
#include <string>
|
|
|
|
namespace SettingsHandlerConfig {
|
|
|
|
const std::string PATH_PREFIX = "/Equipment/";
|
|
const std::string PATH_SUFFIX = "/Devices/MITCPRESSC/DD/";
|
|
|
|
const std::string EQUIPMENT_NAME = "MITC_equipment";
|
|
const std::string OUTPUT_PRESSURE_SP_INDEX = "MITC_OutputPressSPIndex";
|
|
const std::string INPUT_SP_INDEX = "MITC_InputVarioxSPIndex";
|
|
const std::string INPUT_TEMPERATURE_INDEX = "MITC_InputVarioxTempIndex";
|
|
const std::string INPUT_POWER_INDEX = "MITC_InputVarioxPowIndex";
|
|
|
|
} // namespace SettingsHandlerConfig
|
|
|
|
#endif |