Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / GeomAPI / GeomAPI_Interface.h
index 141571688a1da5e993494ac5e448907a30aec29c..3dca3485462d9ef988da49d0b28945e7f450f567 100644 (file)
 
 class GEOMAPI_EXPORT GeomAPI_Interface
 {
-protected:
-  void* myImpl; ///< pointer to the internal impl object
+ protected:
+  void* myImpl;  ///< pointer to the internal impl object
 
-public:
+ public:
   /// None - constructor
   GeomAPI_Interface();
 
   /// Constructor by the impl pointer (used for internal needs)
   GeomAPI_Interface(void* theImpl);
-  
+
   /// Destructor
   virtual ~GeomAPI_Interface();
 
   /// Returns the pointer to the impl
-  template<class T> inline T* implPtr() {return static_cast<T*>(myImpl);}
+  template<class T> inline T* implPtr()
+  {
+    return static_cast<T*>(myImpl);
+  }
   /// Returns the reference object of the impl
-  template<class T> inline const T& impl() {return *(static_cast<T*>(myImpl));}
+  template<class T> inline const T& impl()
+  {
+    return *(static_cast<T*>(myImpl));
+  }
   /// Updates the impl (deletes the old one)
   void setImpl(void* theImpl);
 };