Salome HOME
c6eb6825a1b588640dbb0b777cbfe3f7e38ac7d8
[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 namespace ParaMEDMEM
27 {
28   typedef enum
29     {
30       C_DEALLOC = 2,
31       CPP_DEALLOC = 3
32     } DeallocType;
33
34   typedef enum
35     {
36       ON_CELLS = 0,
37       ON_NODES = 1,
38       ON_GAUSS_PT = 2,
39       ON_GAUSS_NE = 3,
40       ON_NODES_KR = 4
41     } TypeOfField;
42
43   typedef enum
44     {
45       NO_TIME = 4,
46       ONE_TIME = 5,
47       LINEAR_TIME = 6,
48       CONST_ON_TIME_INTERVAL = 7
49     } TypeOfTimeDiscretization;
50
51   typedef bool (*FunctionToEvaluate)(const double *pos, double *res);
52
53   MEDCOUPLING_EXPORT const char *MEDCouplingVersionStr();
54   MEDCOUPLING_EXPORT int MEDCouplingVersion();
55   MEDCOUPLING_EXPORT void MEDCouplingVersionMajMinRel(int& maj, int& minor, int& releas);
56
57   class MEDCOUPLING_EXPORT RefCountObject
58   {
59   protected:
60     RefCountObject();
61     RefCountObject(const RefCountObject& other);
62   public:
63     bool decrRef() const;
64     void incrRef() const;
65   protected:
66     virtual ~RefCountObject();
67   private:
68     mutable int _cnt;
69   };
70 }
71
72 #endif