Salome HOME
MEDFileFields::LoadSpecificEntities to improve perf when reading lots of TS.
[tools/medcoupling.git] / src / ParaMEDMEM / ICoCoField.hxx
old mode 100755 (executable)
new mode 100644 (file)
index ce8e24a..509dc68
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2015  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
 
 #ifndef _ICoCoField_included_
 #define _ICoCoField_included_
-
 #include <string>
 
-namespace ICoCo
-{
-  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