X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Interface.cpp;h=8f691af665c56cece03afae845adc553104fad01;hb=95ff1008bc8215fdeafd7d253dc5a6f33e949363;hp=1ee1a621303a50828488368e10cd906e1d25b67a;hpb=7bf19255421b34594c7b0a76d0ce28166d0ce895;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Interface.cpp b/src/GeomAPI/GeomAPI_Interface.cpp index 1ee1a6213..8f691af66 100644 --- a/src/GeomAPI/GeomAPI_Interface.cpp +++ b/src/GeomAPI/GeomAPI_Interface.cpp @@ -1,30 +1,35 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomAPI_Interface.cpp -// Created: 23 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2021 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include GeomAPI_Interface::GeomAPI_Interface() { - myImpl = 0; -} -GeomAPI_Interface::GeomAPI_Interface(void* theImpl) -{ - myImpl = theImpl; } GeomAPI_Interface::~GeomAPI_Interface() { - if (myImpl) - delete myImpl; + } -void GeomAPI_Interface::setImpl(void* theImpl) +bool GeomAPI_Interface::empty() const { - if (myImpl) - delete myImpl; - myImpl = theImpl; + return myImpl.get() == 0; }