]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Fix comments in ModelAPI_AttributeString.h
authorspo <sergey.pokhodenko@opencascade.com>
Tue, 7 Jun 2016 06:10:46 +0000 (09:10 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Fri, 17 Jun 2016 11:41:03 +0000 (14:41 +0300)
src/ModelAPI/ModelAPI_AttributeString.h

index b3e0ad0e298d0d5a2be046c8cb45519db55b5e67..b281795f9e59cca0460b4fdfc62064199bcd6030 100644 (file)
 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<ModelAPI_AttributeString> AttributeStringPtr;
 
 #endif