blob: bfb9f55caf4cb3dd282d92904588d3cc74b55f8f [file] [log] [blame]
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001#ifndef XMLNODE_H
2#define XMLNODE_H
3
4#include <string>
5
6using namespace std;
7
8struct 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