25 lines
504 B
C++
25 lines
504 B
C++
#ifndef DEMAND_HANDLER_CONFIG_H
|
|
#define DEMAND_HANDLER_CONFIG_H
|
|
|
|
#include <string>
|
|
|
|
namespace DemanHandlerConfig {
|
|
const std::string PATH_PREFIX = "/Equipment/";
|
|
const std::string PATH_SUFFIX = "/Variables";
|
|
const std::string DEMAND = "Demand";
|
|
|
|
enum class ParameterIndex {
|
|
|
|
PRESSURE_CONTROL_MODE = 6,
|
|
SET_PRESSURE = 7,
|
|
MINIMAL_PRESSURE = 8,
|
|
MAXIMAL_PRESSURE = 9,
|
|
CONSTANTE_1 = 10,
|
|
CONSTANTE_2 = 11,
|
|
MAXIMUM_PARAMETER_INDEX = 11
|
|
};
|
|
|
|
}; // namespace DemanHandlerConfig
|
|
|
|
#endif
|