Lines Matching refs:XMLChildNode
114 class XMLChildNode : public XMLNode class
120 XMLChildNode( XMLParentNode *pPar );
121 XMLChildNode():pParent( NULL ){}; in XMLChildNode() function in XMLChildNode
122 XMLChildNode( const XMLChildNode& obj);
123 XMLChildNode& operator=(const XMLChildNode& obj);
129 virtual ~XMLChildNode(){}; in ~XMLChildNode()
132 DECLARE_LIST( XMLChildNodeList, XMLChildNode * )
140 class XMLParentNode : public XMLChildNode
148 : XMLChildNode( pPar ), pChildList( NULL ) in XMLParentNode()
168 XMLChildNode *pChild /// the new child
172 XMLChildNode *pChild , int pos /// the new child
390 class XMLData : public XMLChildNode
402 : XMLChildNode( Parent ), sData( rData ) , isNewCreated ( false ){} in XMLData()
408 : XMLChildNode( Parent ), sData( rData ) , isNewCreated ( newCreated ){} in XMLData()
432 class XMLComment : public XMLChildNode
443 : XMLChildNode( Parent ), sComment( rComment ) {} in XMLComment()
459 class XMLDefault : public XMLChildNode
470 : XMLChildNode( Parent ), sDefault( rDefault ) {} in XMLDefault()