• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef XMLNODE_H
2 #define XMLNODE_H
3 
4 #include <string>
5 
6 using namespace std;
7 
8 struct XMLAttribute
9 {
10     string ns;
11     string name;
12     string value;
13 
14     static string Find(const vector<XMLAttribute>& list,
15                                 const string& ns, const string& name, const string& def);
16 };
17 
18 
19 #endif // XMLNODE_H
20