From: spo Date: Tue, 7 Jun 2016 06:10:46 +0000 (+0300) Subject: Fix comments in ModelAPI_AttributeString.h X-Git-Tag: V_2.4.0~91^2~80 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4f02765ee18b49a334d9a68fde8b9410b36b1a3c;p=modules%2Fshaper.git Fix comments in ModelAPI_AttributeString.h --- diff --git a/src/ModelAPI/ModelAPI_AttributeString.h b/src/ModelAPI/ModelAPI_AttributeString.h index b3e0ad0e2..b281795f9 100644 --- a/src/ModelAPI/ModelAPI_AttributeString.h +++ b/src/ModelAPI/ModelAPI_AttributeString.h @@ -19,10 +19,10 @@ class ModelAPI_AttributeString : public ModelAPI_Attribute { public: - /// Defines the double value + /// Defines the string value MODELAPI_EXPORT virtual void setValue(const std::string& theValue) = 0; - /// Returns the double value + /// Returns the string value MODELAPI_EXPORT virtual std::string value() = 0; /// Returns the type of this class of attributes @@ -42,7 +42,7 @@ class ModelAPI_AttributeString : public ModelAPI_Attribute MODELAPI_EXPORT ModelAPI_AttributeString(); }; -//! Pointer on double attribute +//! Pointer on string attribute typedef std::shared_ptr AttributeStringPtr; #endif