X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Interface.h;h=fd5c83fce11ef200fe7d9faafa5a4e2dc534f143;hb=b2fc3132f3010bb1ebc54fff534cda6bb53e89b3;hp=3dca3485462d9ef988da49d0b28945e7f450f567;hpb=8dc74f82810d5f597b78633b457efb0ef4f89f9f;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Interface.h b/src/GeomAPI/GeomAPI_Interface.h index 3dca34854..fd5c83fce 100644 --- a/src/GeomAPI/GeomAPI_Interface.h +++ b/src/GeomAPI/GeomAPI_Interface.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Interface.hxx // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV @@ -7,38 +9,54 @@ #include +#include + /**\class GeomAPI_Interface * \ingroup DataModel * \brief General base class for all interfaces in this package */ -class GEOMAPI_EXPORT GeomAPI_Interface +class GeomAPI_Interface { - protected: - void* myImpl; ///< pointer to the internal impl object + private: + std::shared_ptr myImpl; ///< pointer to the internal impl object public: /// None - constructor - GeomAPI_Interface(); + GEOMAPI_EXPORT GeomAPI_Interface(); /// Constructor by the impl pointer (used for internal needs) - GeomAPI_Interface(void* theImpl); + template explicit GeomAPI_Interface(T* theImpl) + { + myImpl.reset(theImpl); + } /// Destructor - virtual ~GeomAPI_Interface(); + GEOMAPI_EXPORT virtual ~GeomAPI_Interface(); /// Returns the pointer to the impl template inline T* implPtr() { - return static_cast(myImpl); + return static_cast(myImpl.get()); + } + /// Returns the pointer to the impl + template inline const T* implPtr() const + { + return static_cast(myImpl.get()); } /// Returns the reference object of the impl - template inline const T& impl() + template inline const T& impl() const { - return *(static_cast(myImpl)); + return *(static_cast(myImpl.get())); } /// Updates the impl (deletes the old one) - void setImpl(void* theImpl); + template inline void setImpl(T* theImpl) + { + myImpl.reset(theImpl); + } + + /// Returns true if the impl is empty + GEOMAPI_EXPORT bool empty() const; }; #endif