OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / frameworks / base / tools / localize / XMLNode.h
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