blob: bfb9f55caf4cb3dd282d92904588d3cc74b55f8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|