Salome HOME
Merge from V6_main 13/12/2012
[modules/med.git] / src / MEDCoupling / MEDCouplingRefCountObject.cxx
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 #include "MEDCouplingRefCountObject.hxx"
22 #include "MED_version.h"
23
24 using namespace ParaMEDMEM;
25
26 const char *ParaMEDMEM::MEDCouplingVersionStr()
27 {
28   return SALOMEMED_VERSION_STR;
29 }
30
31 int ParaMEDMEM::MEDCouplingVersion()
32 {
33   return SALOMEMED_VERSION;
34 }
35
36 void ParaMEDMEM::MEDCouplingVersionMajMinRel(int& maj, int& minor, int& releas)
37 {
38   int ver=SALOMEMED_VERSION;
39   maj=(ver & 0xFF0000) >> 16;
40   minor=(ver & 0xFF00) >> 8;
41   releas=(ver & 0xFF);
42 }
43
44 RefCountObject::RefCountObject():_cnt(1)
45 {
46 }
47
48 RefCountObject::RefCountObject(const RefCountObject& other):_cnt(1)
49 {
50 }
51
52 bool RefCountObject::decrRef() const
53 {
54   bool ret=((--_cnt)==0);
55   if(ret)
56     delete this;
57   return ret;
58 }
59
60 void RefCountObject::incrRef() const
61 {
62   _cnt++;
63 }
64
65 RefCountObject::~RefCountObject()
66 {
67 }