diff options
| author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
|---|---|---|
| committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
| commit | 54b6cfa9a9e5b861a9930af873580d6dc20f773c (patch) | |
| tree | 35051494d2af230dce54d6b31c6af8fc24091316 /tools/localize/XMLNode.h | |
| download | frameworks_base-54b6cfa9a9e5b861a9930af873580d6dc20f773c.zip frameworks_base-54b6cfa9a9e5b861a9930af873580d6dc20f773c.tar.gz frameworks_base-54b6cfa9a9e5b861a9930af873580d6dc20f773c.tar.bz2 | |
Initial Contribution
Diffstat (limited to 'tools/localize/XMLNode.h')
| -rw-r--r-- | tools/localize/XMLNode.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/localize/XMLNode.h b/tools/localize/XMLNode.h new file mode 100644 index 0000000..bfb9f55 --- /dev/null +++ b/tools/localize/XMLNode.h @@ -0,0 +1,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 |
