Salome HOME
Merge from V6_main (04/10/2012)
[modules/med.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   class MEDCOUPLING_EXPORT RefCountObject
54   {
55   protected:
56     RefCountObject();
57     RefCountObject(const RefCountObject& other);
58   public:
59     bool decrRef() const;
60     void incrRef() const;
61   protected:
62     virtual ~RefCountObject();
63   private:
64     mutable int _cnt;
65   };
66 }
67
68 #endif