X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Interface.h;h=27b8220129d590ed378e3f818b0f6c8932446c18;hb=bdbfb368d71ed11cc0391354a7d86c880cd94949;hp=fd5c83fce11ef200fe7d9faafa5a4e2dc534f143;hpb=f5ec46873a93bcb124c0ba8462e34db9ea8f21c2;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Interface.h b/src/GeomAPI/GeomAPI_Interface.h index fd5c83fce..27b822012 100644 --- a/src/GeomAPI/GeomAPI_Interface.h +++ b/src/GeomAPI/GeomAPI_Interface.h @@ -16,10 +16,15 @@ * \brief General base class for all interfaces in this package */ +template +void GeomAPI_deleter( void* p ) { + delete reinterpret_cast(p); +} + class GeomAPI_Interface { private: - std::shared_ptr myImpl; ///< pointer to the internal impl object + std::shared_ptr myImpl; ///< pointer to the internal impl object public: /// None - constructor @@ -28,7 +33,7 @@ class GeomAPI_Interface /// Constructor by the impl pointer (used for internal needs) template explicit GeomAPI_Interface(T* theImpl) { - myImpl.reset(theImpl); + myImpl = std::shared_ptr(reinterpret_cast(theImpl), GeomAPI_deleter); } /// Destructor @@ -37,22 +42,22 @@ class GeomAPI_Interface /// Returns the pointer to the impl template inline T* implPtr() { - return static_cast(myImpl.get()); + return reinterpret_cast(myImpl.get()); } /// Returns the pointer to the impl template inline const T* implPtr() const { - return static_cast(myImpl.get()); + return reinterpret_cast(myImpl.get()); } /// Returns the reference object of the impl template inline const T& impl() const { - return *(static_cast(myImpl.get())); + return *(reinterpret_cast(myImpl.get())); } /// Updates the impl (deletes the old one) template inline void setImpl(T* theImpl) { - myImpl.reset(theImpl); + myImpl = std::shared_ptr(reinterpret_cast(theImpl), GeomAPI_deleter); } /// Returns true if the impl is empty