From cd9c092ea51feba3c5f733acf4495b925ed4042e Mon Sep 17 00:00:00 2001 From: srn Date: Wed, 30 Mar 2005 10:12:04 +0000 Subject: [PATCH] Added Copy and empty constructors. --- src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx b/src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx index 20b9e237c..42ca6ffe8 100644 --- a/src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx +++ b/src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx @@ -24,6 +24,14 @@ private: public: + SALOMEDSImpl_SComponentIterator(const SALOMEDSImpl_SComponentIterator& theIterator) + { + _it = theIterator._it; + _lab = theIterator._lab; + } + + SALOMEDSImpl_SComponentIterator() {}; + SALOMEDSImpl_SComponentIterator(const Handle(TDocStd_Document)& theDocument); ~SALOMEDSImpl_SComponentIterator() {}; -- 2.39.2