Salome HOME
Merge branch 'Dev_1.3.0' of newgeom:newgeom into Dev_1.3.0
[modules/shaper.git] / src / Model / Model_AttributeString.h
index 2695cbcf5ee16f256dc953557378e652aba03f86..2d1ba634dea54673f8a62b93e388d4b1413c463d 100644 (file)
@@ -1,15 +1,17 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        Model_AttributeString.h
-// Created:     2 june 2014
-// Author:      Vitaly Smetannikov
+// Created:     25 august 2014
+// Author:      sbh
 
-#ifndef Model_AttributeString_H_
-#define Model_AttributeString_H_
+#ifndef MODEL_ATTRIBUTESTRING_H_
+#define MODEL_ATTRIBUTESTRING_H_
 
 #include <Model.h>
 #include <ModelAPI_AttributeString.h>
 
 #include <TDF_Label.hxx>
-#include <Handle_TDataStd_Name.hxx>
+#include <TDataStd_Name.hxx>
 
 #include <string>
 
 
 class Model_AttributeString : public ModelAPI_AttributeString
 {
-  Handle_TDataStd_Name myString;  ///< double is Real attribute
+  Handle_TDataStd_Name myString;
  public:
-  /// Defines the double value
+  /// Defines the std::string value
   MODEL_EXPORT virtual void setValue(const std::string& theValue);
 
-  /// Returns the double value
+  /// Returns the std::string  value
   MODEL_EXPORT virtual std::string value();
 
  protected: