Salome HOME
7c731463e1770ab061489f4d7523af19b4ccb42d
[modules/med.git] / src / MEDCoupling / MEDCouplingFieldTemplate.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __PARAMEDMEM_MEDCOUPLINGFIELDTEMPLATE_HXX__
21 #define __PARAMEDMEM_MEDCOUPLINGFIELDTEMPLATE_HXX__
22
23 #include "MEDCouplingField.hxx"
24
25 namespace ParaMEDMEM
26 {
27   class MEDCouplingFieldDouble;
28
29   class MEDCOUPLING_EXPORT MEDCouplingFieldTemplate : public MEDCouplingField
30   {
31   public:
32     static MEDCouplingFieldTemplate *New(const MEDCouplingFieldDouble *f) throw(INTERP_KERNEL::Exception);
33     static MEDCouplingFieldTemplate *New(TypeOfField type);
34     std::string simpleRepr() const;
35     std::string advancedRepr() const;
36     void checkCoherency() const throw(INTERP_KERNEL::Exception);
37     //
38     void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
39     void getTinySerializationDbleInformation(std::vector<double>& tinyInfo) const;
40     void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
41     void resizeForUnserialization(const std::vector<int>& tinyInfoI, DataArrayInt *&dataInt);
42     void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<double>& tinyInfoD, const std::vector<std::string>& tinyInfoS);
43     void serialize(DataArrayInt *&dataInt) const;
44     //
45   private:
46     MEDCouplingFieldTemplate(const MEDCouplingFieldDouble *f) throw(INTERP_KERNEL::Exception);
47     MEDCouplingFieldTemplate(TypeOfField type);
48   };
49 }
50
51 #endif