Author: jasons Date: Sat Jun 19 21:31:13 2004 New Revision: 21483 Modified: xml/xerces-p/trunk/Xerces.i Log: ignoring all assignment operatros for now
Modified: xml/xerces-p/trunk/Xerces.i ============================================================================== --- xml/xerces-p/trunk/Xerces.i (original) +++ xml/xerces-p/trunk/Xerces.i Sat Jun 19 21:31:13 2004 @@ -206,7 +206,10 @@ /* * NEEDED FOR INITIALIZATION AND TERMINATION */ -%rename(operator_assignment) operator=; + +%ignore operator =; + +// %rename(operator_assignment) operator=; %rename(operator_equal_to) operator==; %rename(operator_not_equal_to) operator!=; @@ -419,11 +422,13 @@ // these are needed for the DTD templates %import "xercesc/util/NameIdPool.hpp" +%ignore XERCES_CPP_NAMESPACE::DTDElementDeclEnumerator::operator=; %include "xercesc/validators/DTD/DTDElementDecl.hpp" %template() XERCES_CPP_NAMESPACE::XMLEnumerator<DTDElementDecl>; %template() XERCES_CPP_NAMESPACE::NameIdPool<DTDElementDecl>; %template(DTDElementDeclEnumerator) XERCES_CPP_NAMESPACE::NameIdPoolEnumerator<DTDElementDecl>; +%ignore XERCES_CPP_NAMESPACE::DTDEntityDeclEnumerator::operator=; %include "xercesc/validators/DTD/DTDEntityDecl.hpp" %template() XERCES_CPP_NAMESPACE::XMLEnumerator<DTDEntityDecl>; %template() XERCES_CPP_NAMESPACE::NameIdPool<DTDEntityDecl>; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
