X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Iterator.h;h=d09d360dab383eab5be0733c3e18127c86773ea0;hb=216439f38d7dd618833b75c5dcb640915a62ba77;hp=64728dd2c6bc55fb62a9be6b75055d70e1ac0824;hpb=84f8b4a57d3cdad820bc1333a5066699cd1c8ae3;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Iterator.h b/src/HYDROData/HYDROData_Iterator.h index 64728dd2..d09d360d 100644 --- a/src/HYDROData/HYDROData_Iterator.h +++ b/src/HYDROData/HYDROData_Iterator.h @@ -21,8 +21,8 @@ public: * \param theDoc document to iterate * \param theKind kind of the iterated object, can be UNKNOWN: to iterate all objects */ - HYDRODATA_EXPORT HYDROData_Iterator(Handle(HYDROData_Document) theDoc, - ObjectKind theKind = KIND_UNKNOWN); + HYDRODATA_EXPORT HYDROData_Iterator( const Handle(HYDROData_Document)& theDoc, + const ObjectKind theKind = KIND_UNKNOWN); /** * Iterates to the next object @@ -46,8 +46,15 @@ public: * \param theDoc document where object will be located * \param theKind kind of the new object, can not be UNKNOWN */ - static Handle(HYDROData_Entity) CreateObject( TDF_Label& theNewLabel, - const ObjectKind& theObjectKind ); + static HYDRODATA_EXPORT Handle(HYDROData_Entity) CreateObject( + TDF_Label& theNewLabel, + const ObjectKind& theObjectKind ); + + /** + * Returns object associated to the given label. + */ + static HYDRODATA_EXPORT Handle(HYDROData_Entity) Object( + const TDF_Label& theLabel ); protected: @@ -64,11 +71,6 @@ protected: const Handle(HYDROData_Document)& theDoc, const ObjectKind& theObjectKind ); - /** - * Returns object associated to the given label. - */ - static Handle(HYDROData_Entity) Object(const TDF_Label theLabel); - TDF_ChildIDIterator myIter; ///< iterator by the objects in the document };