X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParaMEDMEM%2FICoCoField.hxx;h=509dc68f58ba8beeeec7f96beffac34334f56437;hb=a2466d19e2425780a8b683f3cc1d33bd4f8c562d;hp=ce8e24adeea7e7a57fe0ada51c064414d27be500;hpb=5dcdc2b6a915a809dd2d7831e4b2e85ae286328a;p=tools%2Fmedcoupling.git diff --git a/src/ParaMEDMEM/ICoCoField.hxx b/src/ParaMEDMEM/ICoCoField.hxx index ce8e24ade..509dc68f5 100644 --- a/src/ParaMEDMEM/ICoCoField.hxx +++ b/src/ParaMEDMEM/ICoCoField.hxx @@ -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 @@ -23,22 +23,21 @@ #ifndef _ICoCoField_included_ #define _ICoCoField_included_ - #include -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