Salome HOME
Adding conversion to int64 for MEDcouplingField
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingFieldInt32.hxx
1 // Copyright (C) 2007-2021  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, or (at your option) any later version.
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 // Author : Yann Pora (EDF R&D)
20
21 #pragma once
22
23 #include "MEDCoupling.hxx"
24 #include "MEDCouplingFieldT.hxx"
25 #include "MEDCouplingMemArray.hxx"
26
27 #include <string>
28
29 namespace MEDCoupling
30 {
31   class MEDCouplingFieldDouble;
32   class MEDCouplingFieldTemplate;
33
34   class MEDCouplingFieldInt32 : public MEDCouplingFieldT<Int32>
35   {
36   public:
37     MEDCOUPLING_EXPORT static MEDCouplingFieldInt32 *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
38     MEDCOUPLING_EXPORT static MEDCouplingFieldInt32 *New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME);
39     MEDCOUPLING_EXPORT MEDCouplingFieldInt32 *deepCopy() const;
40     MEDCOUPLING_EXPORT MEDCouplingFieldInt32 *clone(bool recDeepCpy) const;
41     MEDCOUPLING_EXPORT MEDCouplingFieldDouble *convertToDblField() const;
42     MEDCOUPLING_EXPORT MEDCouplingFieldFloat *convertToFloatField() const;
43     MEDCOUPLING_EXPORT MEDCouplingFieldInt64 *convertToInt64Field() const;
44     MEDCOUPLING_EXPORT std::string getClassName() const override { return std::string("MEDCouplingFieldInt32"); }
45   protected:
46     MEDCouplingFieldInt32(TypeOfField type, TypeOfTimeDiscretization td);
47     MEDCouplingFieldInt32(const MEDCouplingFieldInt32& other, bool deepCopy);
48     MEDCouplingFieldInt32(NatureOfField n, MEDCouplingTimeDiscretizationInt32 *td, MEDCouplingFieldDiscretization *type);
49     MEDCouplingFieldInt32(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td);
50     ~MEDCouplingFieldInt32() { }
51   };
52 }