M7350/base/tools/localize/XMLNode.h

20 lines
323 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#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