X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Interface.h;h=0e79a10f6c124f27db5cac305f21e49a3b8f6dbb;hb=feaeb677047efcb01c02b861691810750e2b32e1;hp=f77131de6f821dc5fb1b52fad1dfaaa6965ee511;hpb=6b437d84d92c29ba8c2c843735fa2feb4f0664c7;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Interface.h b/src/GeomAPI/GeomAPI_Interface.h index f77131de6..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 static_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); };