13 lines
298 B
C++
13 lines
298 B
C++
#ifndef OUTPUT_HANDLER_CONFIG_H
|
|
#define OUTPUT_HANDLER_CONFIG_H
|
|
|
|
#include <string>
|
|
|
|
namespace OutputHandlerConfig {
|
|
const std::string PATH_PREFIX = "/Equipment/";
|
|
const std::string PATH_SUFFIX = "/Variables";
|
|
|
|
const std::string OUTPUT_VARIABLE = "Output";
|
|
} // namespace OutputHandlerConfig
|
|
|
|
#endif |