Salome HOME
f5c99be4a7a80db2bcb86223896fbb6f3c596ad8
[modules/med.git] / src / MEDCoupling / MEDCouplingRefCountObject.hxx
1 // Copyright (C) 2007-2013  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 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef __PARAMEDMEM_MEDCOUPLINGREFCOUNTOBJECT_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGREFCOUNTOBJECT_HXX__
23
24 #include "MEDCoupling.hxx"
25
26 #include <cstddef>
27
28 namespace ParaMEDMEM
29 {
30   typedef enum
31     {
32       C_DEALLOC = 2,
33       CPP_DEALLOC = 3
34     } DeallocType;
35
36   typedef enum
37     {
38       ON_CELLS = 0,
39       ON_NODES = 1,
40       ON_GAUSS_PT = 2,
41       ON_GAUSS_NE = 3,
42       ON_NODES_KR = 4
43     } TypeOfField;
44
45   typedef enum
46     {
47       NO_TIME = 4,
48       ONE_TIME = 5,
49       LINEAR_TIME = 6,
50       CONST_ON_TIME_INTERVAL = 7
51     } TypeOfTimeDiscretization;
52
53   typedef bool (*FunctionToEvaluate)(const double *pos, double *res);
54
55   MEDCOUPLING_EXPORT const char *MEDCouplingVersionStr();
56   MEDCOUPLING_EXPORT int MEDCouplingVersion();
57   MEDCOUPLING_EXPORT void MEDCouplingVersionMajMinRel(int& maj, int& minor, int& releas);
58   MEDCOUPLING_EXPORT int MEDCouplingSizeOfVoidStar();
59   MEDCOUPLING_EXPORT bool MEDCouplingByteOrder();
60   MEDCOUPLING_EXPORT const char *MEDCouplingByteOrderStr();
61
62   class MEDCOUPLING_EXPORT RefCountObject
63   {
64   protected:
65     RefCountObject();
66     RefCountObject(const RefCountObject& other);
67   public:
68     bool decrRef() const;
69     void incrRef() const;
70     virtual std::size_t getHeapMemorySize() const = 0;
71     int getRCValue() const;
72     RefCountObject& operator=(const RefCountObject& other);
73   protected:
74     virtual ~RefCountObject();
75   private:
76     mutable int _cnt;
77   };
78 }
79
80 #endif