amassari 2005/01/07 07:31:06 Modified: c/src/xercesc/dom DOMAttr.hpp DOMCDATASection.hpp DOMCharacterData.hpp DOMElement.hpp DOMEntity.hpp DOMEntityReference.hpp DOMNode.hpp DOMNodeIterator.hpp DOMNotation.hpp DOMProcessingInstruction.hpp DOMRange.hpp DOMText.hpp DOMTreeWalker.hpp Log: Removed warnings Revision Changes Path 1.11 +4 -4 xml-xerces/c/src/xercesc/dom/DOMAttr.hpp Index: DOMAttr.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMAttr.hpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- DOMAttr.hpp 26 Sep 2004 15:38:02 -0000 1.10 +++ DOMAttr.hpp 7 Jan 2005 15:31:06 -0000 1.11 @@ -61,16 +61,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMAttr() {}; + DOMAttr() {} + DOMAttr(const DOMAttr &other) : DOMNode(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMAttr(const DOMAttr &); DOMAttr & operator = (const DOMAttr &); //@} 1.9 +4 -4 xml-xerces/c/src/xercesc/dom/DOMCDATASection.hpp Index: DOMCDATASection.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMCDATASection.hpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- DOMCDATASection.hpp 26 Sep 2004 15:38:02 -0000 1.8 +++ DOMCDATASection.hpp 7 Jan 2005 15:31:06 -0000 1.9 @@ -69,16 +69,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMCDATASection() {}; + DOMCDATASection() {} + DOMCDATASection(const DOMCDATASection &other) : DOMText(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMCDATASection(const DOMCDATASection &); DOMCDATASection & operator = (const DOMCDATASection &); //@} 1.10 +4 -4 xml-xerces/c/src/xercesc/dom/DOMCharacterData.hpp Index: DOMCharacterData.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMCharacterData.hpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- DOMCharacterData.hpp 8 Sep 2004 13:55:38 -0000 1.9 +++ DOMCharacterData.hpp 7 Jan 2005 15:31:06 -0000 1.10 @@ -49,16 +49,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMCharacterData() {}; + DOMCharacterData() {} + DOMCharacterData(const DOMCharacterData &other) : DOMNode(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMCharacterData(const DOMCharacterData &); DOMCharacterData & operator = (const DOMCharacterData &); //@} 1.12 +4 -4 xml-xerces/c/src/xercesc/dom/DOMElement.hpp Index: DOMElement.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMElement.hpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- DOMElement.hpp 26 Sep 2004 15:38:02 -0000 1.11 +++ DOMElement.hpp 7 Jan 2005 15:31:06 -0000 1.12 @@ -66,16 +66,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMElement() {}; + DOMElement() {} + DOMElement(const DOMElement &other) : DOMNode(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMElement(const DOMElement &); DOMElement & operator = (const DOMElement &); //@} 1.10 +4 -4 xml-xerces/c/src/xercesc/dom/DOMEntity.hpp Index: DOMEntity.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMEntity.hpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- DOMEntity.hpp 26 Sep 2004 15:38:02 -0000 1.9 +++ DOMEntity.hpp 7 Jan 2005 15:31:06 -0000 1.10 @@ -70,16 +70,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMEntity() {}; + DOMEntity() {} + DOMEntity(const DOMEntity &other) : DOMNode(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMEntity(const DOMEntity &); DOMEntity & operator = (const DOMEntity &); //@} 1.9 +4 -4 xml-xerces/c/src/xercesc/dom/DOMEntityReference.hpp Index: DOMEntityReference.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMEntityReference.hpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- DOMEntityReference.hpp 26 Sep 2004 15:38:02 -0000 1.8 +++ DOMEntityReference.hpp 7 Jan 2005 15:31:06 -0000 1.9 @@ -61,16 +61,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMEntityReference() {}; + DOMEntityReference() {} + DOMEntityReference(const DOMEntityReference &other) : DOMNode(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMEntityReference(const DOMEntityReference &); DOMEntityReference & operator = (const DOMEntityReference &); //@} 1.19 +3 -3 xml-xerces/c/src/xercesc/dom/DOMNode.hpp Index: DOMNode.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNode.hpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- DOMNode.hpp 21 Dec 2004 16:02:51 -0000 1.18 +++ DOMNode.hpp 7 Jan 2005 15:31:06 -0000 1.19 @@ -143,15 +143,15 @@ /** @name Hidden constructors */ //@{ DOMNode() {}; + DOMNode(const DOMNode &) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMNode(const DOMNode &); DOMNode & operator = (const DOMNode &); //@} 1.11 +4 -4 xml-xerces/c/src/xercesc/dom/DOMNodeIterator.hpp Index: DOMNodeIterator.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNodeIterator.hpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- DOMNodeIterator.hpp 26 Sep 2004 15:38:02 -0000 1.10 +++ DOMNodeIterator.hpp 7 Jan 2005 15:31:06 -0000 1.11 @@ -48,16 +48,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMNodeIterator() {}; + DOMNodeIterator() {} + DOMNodeIterator(const DOMNodeIterator &) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMNodeIterator(const DOMNodeIterator &); DOMNodeIterator & operator = (const DOMNodeIterator &); //@} 1.9 +4 -4 xml-xerces/c/src/xercesc/dom/DOMNotation.hpp Index: DOMNotation.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNotation.hpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- DOMNotation.hpp 26 Sep 2004 15:38:02 -0000 1.8 +++ DOMNotation.hpp 7 Jan 2005 15:31:06 -0000 1.9 @@ -47,16 +47,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMNotation() {}; + DOMNotation() {} + DOMNotation(const DOMNotation &other) : DOMNode(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMNotation(const DOMNotation &); DOMNotation & operator = (const DOMNotation &); //@} 1.9 +4 -4 xml-xerces/c/src/xercesc/dom/DOMProcessingInstruction.hpp Index: DOMProcessingInstruction.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMProcessingInstruction.hpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- DOMProcessingInstruction.hpp 26 Sep 2004 15:38:02 -0000 1.8 +++ DOMProcessingInstruction.hpp 7 Jan 2005 15:31:06 -0000 1.9 @@ -42,16 +42,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMProcessingInstruction() {}; + DOMProcessingInstruction() {} + DOMProcessingInstruction(const DOMProcessingInstruction &other) : DOMNode(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMProcessingInstruction(const DOMProcessingInstruction &); DOMProcessingInstruction & operator = (const DOMProcessingInstruction &); //@} 1.10 +4 -4 xml-xerces/c/src/xercesc/dom/DOMRange.hpp Index: DOMRange.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMRange.hpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- DOMRange.hpp 8 Sep 2004 13:55:39 -0000 1.9 +++ DOMRange.hpp 7 Jan 2005 15:31:06 -0000 1.10 @@ -39,16 +39,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMRange() {}; + DOMRange() {} + DOMRange(const DOMRange &) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMRange(const DOMRange &); DOMRange & operator = (const DOMRange &); //@} 1.11 +4 -4 xml-xerces/c/src/xercesc/dom/DOMText.hpp Index: DOMText.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMText.hpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- DOMText.hpp 26 Sep 2004 15:38:02 -0000 1.10 +++ DOMText.hpp 7 Jan 2005 15:31:06 -0000 1.11 @@ -54,16 +54,16 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMText() {}; + DOMText() {} + DOMText(const DOMText &other) : DOMCharacterData(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- - /** @name Unimplemented constructors and operators */ + /** @name Unimplemented operators */ //@{ - DOMText(const DOMText &); DOMText & operator = (const DOMText &); //@} 1.11 +3 -3 xml-xerces/c/src/xercesc/dom/DOMTreeWalker.hpp Index: DOMTreeWalker.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMTreeWalker.hpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- DOMTreeWalker.hpp 26 Sep 2004 15:38:03 -0000 1.10 +++ DOMTreeWalker.hpp 7 Jan 2005 15:31:06 -0000 1.11 @@ -53,7 +53,8 @@ // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ - DOMTreeWalker() {}; + DOMTreeWalker() {} + DOMTreeWalker(const DOMTreeWalker &) {} //@} private: @@ -62,7 +63,6 @@ // ----------------------------------------------------------------------- /** @name Unimplemented constructors and operators */ //@{ - DOMTreeWalker(const DOMTreeWalker &); DOMTreeWalker & operator = (const DOMTreeWalker &); //@}
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]