X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Iterator.h;h=d09d360dab383eab5be0733c3e18127c86773ea0;hb=1bbabb6a4145a459a6655a3bc18b71ec135bf814;hp=409787fc600db769b7da61cbbc4a01f28c9b306c;hpb=8538df60dfaeb61e0e44362e20d359747cdae923;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Iterator.h b/src/HYDROData/HYDROData_Iterator.h index 409787fc..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 };