sys-sage
Loading...
Searching...
No Matches
xml_dump.hpp
1#ifndef XML_DUMP
2#define XML_DUMP
3
4#include <functional>
5
6#include "Component.hpp"
7#include "DataPath.hpp"
8
12int exportToXml(Component *root, string path = "", std::function<int(string, void *, string *)> search_custom_attrib_key_fcn = NULL, std::function<int(string, void *, xmlNodePtr)> search_custom_complex_attrib_key_fcn = NULL);
13
19int search_default_attrib_key(string key, void *value, string *ret_value_str);
20
25int print_attrib(map<string, void *> attrib, xmlNodePtr n);
26#endif
Definition Component.hpp:42