Multiple attributes with the same name aren't allowed in XML. (grr, ugly)

Add copy ctor.
This commit is contained in:
Glenn Maynard
2005-10-11 09:35:53 +00:00
parent c9cb09dd36
commit fc6e0a2571
2 changed files with 21 additions and 6 deletions
+2 -1
View File
@@ -24,7 +24,7 @@ struct DateTime;
class RageFileBasic;
struct XAttr;
typedef multimap<CString,XAttr*> XAttrs;
typedef map<CString,XAttr*> XAttrs;
struct XNode;
typedef multimap<CString,XNode*> XNodes;
@@ -188,6 +188,7 @@ struct XNode
void SetAttrValue( const CString &sName, const CString &sValue );
XNode() { }
XNode( const XNode &cpy );
~XNode();
void Clear();