Salome HOME
Merge from V6_main 11/02/2013
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingRefCountObject.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 // 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
59   class MEDCOUPLING_EXPORT RefCountObject
60   {
61   protected:
62     RefCountObject();
63     RefCountObject(const RefCountObject& other);
64   public:
65     bool decrRef() const;
66     void incrRef() const;
67     virtual std::size_t getHeapMemorySize() const = 0;
68   protected:
69     virtual ~RefCountObject();
70   private:
71     mutable int _cnt;
72   };
73 }
74
75 #endif