You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by "Peter A. Volchek" <Pe...@ti.com.od.ua> on 2000/06/14 09:53:45 UTC

Need access to fCurrentParent in DOMParser

 Can you add two protected members ?
 
 inline DOM_Node DOMParser::getCurrentParent()
 {
     return fCurrentParent;
 }
 
 inline void DOMParser::setCurrentParent(DOM_Node toSet)
 {
     fCurrentParent = toSet;
 }
 
 
 No ideas why you did not add them.