| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 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 | ||||