]> SALOME platform Git repositories - tools/medcoupling.git/blobdiff - src/ParaMEDMEM/ICoCoField.hxx
Salome HOME
Rollback bad correction of bug EDF8655 (commit 66b873ce0f613b5ab34b739a9e179d3f8b094...
[tools/medcoupling.git] / src / ParaMEDMEM / ICoCoField.hxx
index 676ab9598c6e25bde436ee22c08acba751aa5643..ce8e24adeea7e7a57fe0ada51c064414d27be500 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2014  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 
 #ifndef _ICoCoField_included_
 #define _ICoCoField_included_
-#include <string>
-
 
-namespace ICoCo {
+#include <string>
 
-  class Field {
+namespace ICoCo
+{
+  class Field
+  {
   public:
     Field();
     virtual ~Field();
     void setName(const std::string& name);
     const std::string& getName() const;
-    const char* getCharName() const;
-    
+    const char *getCharName() const;
   private:
-    std::string* _name;
+    std::string _name;
   };
 }
+
 #endif