diff options
Diffstat (limited to 'tools/localize/XMLNode.h')
-rw-r--r-- | tools/localize/XMLNode.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/localize/XMLNode.h b/tools/localize/XMLNode.h new file mode 100644 index 000000000000..bfb9f55caf4c --- /dev/null +++ b/tools/localize/XMLNode.h @@ -0,0 +1,19 @@ +#ifndef XMLNODE_H +#define XMLNODE_H + +#include <string> + +using namespace std; + +struct XMLAttribute +{ + string ns; + string name; + string value; + + static string Find(const vector<XMLAttribute>& list, + const string& ns, const string& name, const string& def); +}; + + +#endif // XMLNODE_H |