16 lines
324 B
C
16 lines
324 B
C
|
#ifndef PUBLIC_DEF_HEADER
|
||
|
#define PUBLIC_DEF_HEADER
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
struct OprBase {
|
||
|
std::string node_path{};
|
||
|
std::string the_node{};
|
||
|
std::string purpose{};
|
||
|
std::string xml_path{};
|
||
|
};
|
||
|
|
||
|
std::vector<std::string> splitString(const std::string& input, const std::string& delimiter);
|
||
|
|
||
|
#endif
|