12 lines
254 B
C++
12 lines
254 B
C++
#ifndef INPUT_HANDLER_CONFIG_H
|
|
#define INPUT_HANDLER_CONFIG_H
|
|
|
|
#include <string>
|
|
|
|
namespace InputHandlerConfig {
|
|
|
|
const std::string PATH_PREFIX = "/Equipment/";
|
|
const std::string PATH_SUFFIX = "/Variables/Input";
|
|
|
|
} // namespace InputHandlerConfig
|
|
#endif |