1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #include "MEDCouplingRefCountObject.hxx"
22 #include "MED_version.h"
24 using namespace ParaMEDMEM;
26 const char *ParaMEDMEM::MEDCouplingVersionStr()
28 return SALOMEMED_VERSION_STR;
31 int ParaMEDMEM::MEDCouplingVersion()
33 return SALOMEMED_VERSION;
36 void ParaMEDMEM::MEDCouplingVersionMajMinRel(int& maj, int& minor, int& releas)
38 int ver=SALOMEMED_VERSION;
39 maj=(ver & 0xFF0000) >> 16;
40 minor=(ver & 0xFF00) >> 8;
44 int ParaMEDMEM::MEDCouplingSizeOfVoidStar()
46 return 8*sizeof(std::size_t);
49 RefCountObject::RefCountObject():_cnt(1)
53 RefCountObject::RefCountObject(const RefCountObject& other):_cnt(1)
58 * Do nothing here ! It is not a bug ( I hope :) ) because all subclasses that
59 * copies using operator= should not copy the ref counter of \a other !
61 RefCountObject& RefCountObject::operator=(const RefCountObject& other)
66 bool RefCountObject::decrRef() const
68 bool ret=((--_cnt)==0);
74 void RefCountObject::incrRef() const
79 int RefCountObject::getRCValue() const
84 RefCountObject::~RefCountObject()