X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Interface.h;h=0e79a10f6c124f27db5cac305f21e49a3b8f6dbb;hb=7f873aed4bae5a98dca078209699b54276b46fce;hp=bd9a77ab13078880e6a961b4a9ab86df08e55900;hpb=6654a921211670c15a79a997ca666a174fe8a6f6;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Interface.h b/src/GeomAPI/GeomAPI_Interface.h index bd9a77ab1..0e79a10f6 100644 --- a/src/GeomAPI/GeomAPI_Interface.h +++ b/src/GeomAPI/GeomAPI_Interface.h @@ -1,9 +1,11 @@ +// 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 @@ -14,23 +16,29 @@ 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 inline T* implPtr() {return dynamic_cast(myImpl);} + template inline T* implPtr() + { + return static_cast(myImpl); + } /// Returns the reference object of the impl - template inline const T& impl() {return *(static_cast(myImpl));} + template inline const T& impl() + { + return *(static_cast(myImpl)); + } /// Updates the impl (deletes the old one) void setImpl(void* theImpl); };