X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeSelection.h;h=1b2f8260155efefa267bca2be85d5bb01b9c2fcf;hb=refs%2Ftags%2FV_1.2.1;hp=22aaf8d9f9b831476ba6d1c63d47701f7570f6b3;hpb=91540e31cc99e5f1eef3296b570b65abf580ca85;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeSelection.h b/src/Model/Model_AttributeSelection.h index 22aaf8d9f..1b2f82601 100644 --- a/src/Model/Model_AttributeSelection.h +++ b/src/Model/Model_AttributeSelection.h @@ -40,7 +40,8 @@ public: MODEL_EXPORT virtual bool update(); /// Returns a textual string of the selection - MODEL_EXPORT virtual std::string namingName(); + /// \param theDefaultValue a name, which is returned if the naming name can not be obtained + MODEL_EXPORT virtual std::string namingName(const std::string& theDefaultValue = ""); /// Returns an Id of the selection /// NOTE: This method has been added for temporary export of groups towards old GEOM @@ -51,6 +52,9 @@ public: /// Selects (i.e. creates Naming data structure) of sub-shape specifed by textual name MODEL_EXPORT virtual void selectSubShape(const std::string& theType, const std::string& theSubShapeName); + /// Returns true if attribute was initialized by some value + MODEL_EXPORT virtual bool isInitialized(); + protected: /// Objects are created for features automatically MODEL_EXPORT Model_AttributeSelection(TDF_Label& theLabel); @@ -72,7 +76,7 @@ protected: TDF_LabelMap& scope(); /// Sets the ID of the attribute in Data (called from Data): here it is used for myRef ID setting - MODELAPI_EXPORT virtual void setID(const std::string theID); + MODEL_EXPORT virtual void setID(const std::string theID); friend class Model_Data; friend class Model_AttributeSelectionList;