14 lines
192 B
C
14 lines
192 B
C
|
#ifndef XML_H
|
||
|
#define XML_H
|
||
|
|
||
|
#include "rapidxml.hpp"
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
rapidxml::xml_node<>* recursive_find_next_node(
|
||
|
rapidxml::xml_node<> *node,
|
||
|
const std::string &node_name
|
||
|
);
|
||
|
|
||
|
#endif
|