Salome HOME
Fix for the correct update of the extrusion created on sketch on lateral face of...
[modules/shaper.git] / src / GeomAPI / GeomAPI_Interface.h
index 1a605595bf5445069eb36a7c5a25e089337ea1b3..fd5c83fce11ef200fe7d9faafa5a4e2dc534f143 100644 (file)
@@ -1,37 +1,62 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        GeomAPI_Interface.hxx
 // Created:     23 Apr 2014
 // Author:      Mikhail PONIKAROV
 
-#ifndef GeomAPI_Interface_HeaderFile
-#define GeomAPI_Interface_HeaderFile
+#ifndef GeomAPI_Interface_H_
+#define GeomAPI_Interface_H_
 
 #include <GeomAPI.h>
 
+#include <memory>
+
 /**\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 implementation object
+ private:
+  std::shared_ptr<void> myImpl;  ///< pointer to the internal impl object
 
-public:
+ public:
   /// None - constructor
-  GeomAPI_Interface();
+  GEOMAPI_EXPORT GeomAPI_Interface();
 
-  /// Constructor by the implementation pointer (used for internal needs)
-  GeomAPI_Interface(void* theImpl);
-  
-  /// Destructor
-  virtual ~GeomAPI_Interface();
+  /// Constructor by the impl pointer (used for internal needs)
+  template<class T> explicit GeomAPI_Interface(T* theImpl)
+  {
+    myImpl.reset(theImpl);
+  }
 
-  /// Returns the pointer to the implementation
-  void* implementation();
-  /// Updates the implementation (deletes the old one)
-  void setImplementation(void* theImpl);
+  /// Destructor
+  GEOMAPI_EXPORT virtual ~GeomAPI_Interface();
+
+  /// Returns the pointer to the impl
+  template<class T> inline T* implPtr()
+  {
+    return static_cast<T*>(myImpl.get());
+  }
+  /// Returns the pointer to the impl
+  template<class T> inline const T* implPtr() const
+  {
+    return static_cast<T*>(myImpl.get());
+  }
+  /// Returns the reference object of the impl
+  template<class T> inline const T& impl() const
+  {
+    return *(static_cast<T*>(myImpl.get()));
+  }
+  /// Updates the impl (deletes the old one)
+  template<class T> inline void setImpl(T* theImpl)
+  {
+    myImpl.reset(theImpl);
+  }
+
+  /// Returns true if the impl is empty
+  GEOMAPI_EXPORT bool empty() const;
 };
 
 #endif
-