mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-08 14:17:06 +03:00
0025182: Standard_OVERRIDE - add alias for C++11 "override" specifier
This commit is contained in:
@@ -92,19 +92,19 @@ public: //! @name sub-shape aspects
|
||||
public: //! @name global aspects
|
||||
|
||||
//! Setup color of entire shape.
|
||||
Standard_EXPORT virtual void SetColor (const Quantity_Color& theColor);
|
||||
Standard_EXPORT virtual void SetColor (const Quantity_Color& theColor) Standard_OVERRIDE;
|
||||
|
||||
//! Setup line width of entire shape.
|
||||
Standard_EXPORT virtual void SetWidth (const Standard_Real theLineWidth);
|
||||
Standard_EXPORT virtual void SetWidth (const Standard_Real theLineWidth) Standard_OVERRIDE;
|
||||
|
||||
//! Sets transparency value.
|
||||
Standard_EXPORT virtual void SetTransparency (const Standard_Real theValue);
|
||||
Standard_EXPORT virtual void SetTransparency (const Standard_Real theValue) Standard_OVERRIDE;
|
||||
|
||||
protected: //! @name override presentation computation
|
||||
|
||||
Standard_EXPORT virtual void Compute (const Handle(PrsMgr_PresentationManager3d)& thePrsMgr,
|
||||
const Handle(Prs3d_Presentation)& thePrs,
|
||||
const Standard_Integer theMode);
|
||||
const Standard_Integer theMode) Standard_OVERRIDE;
|
||||
|
||||
protected:
|
||||
|
||||
|
@@ -27,6 +27,16 @@
|
||||
# define Handle(ClassName) Handle_##ClassName
|
||||
# define STANDARD_TYPE(aType) aType##_Type_()
|
||||
|
||||
#if defined(__cplusplus) && (__cplusplus >= 201100L)
|
||||
// part of C++11 standard
|
||||
#define Standard_OVERRIDE override
|
||||
#elif defined(_MSC_VER) && (_MSC_VER >= 1700)
|
||||
// MSVC extension since VS2005
|
||||
#define Standard_OVERRIDE override
|
||||
#else
|
||||
#define Standard_OVERRIDE
|
||||
#endif
|
||||
|
||||
//======================================================
|
||||
// Windows-specific definitions
|
||||
//======================================================
|
||||
@@ -36,7 +46,7 @@
|
||||
#error "Wrong compiler options has been detected. Add /DWNT option for proper compilation!!!!!"
|
||||
#endif
|
||||
|
||||
# if defined(WNT) && !defined(HAVE_NO_DLL)
|
||||
# if defined(_WIN32) && !defined(HAVE_NO_DLL)
|
||||
|
||||
# ifndef Standard_EXPORT
|
||||
# define Standard_EXPORT __declspec( dllexport )
|
||||
@@ -129,7 +139,7 @@
|
||||
|
||||
# ifndef __Standard_API
|
||||
//# ifdef WNT
|
||||
# if !defined(WNT) || defined(__Standard_DLL) || defined(__FSD_DLL) || defined(__MMgt_DLL) || defined(__OSD_DLL) || defined(__Plugin_DLL) || defined(__Quantity_DLL) || defined(__Resource_DLL) || defined(__SortTools_DLL) || defined(__StdFail_DLL) || defined(__Storage_DLL) || defined(__TColStd_DLL) || defined(__TCollection_DLL) || defined(__TShort_DLL) || defined(__Units_DLL) || defined(__UnitsAPI_DLL) || defined(__Dico_DLL)
|
||||
# if !defined(_WIN32) || defined(__Standard_DLL) || defined(__FSD_DLL) || defined(__MMgt_DLL) || defined(__OSD_DLL) || defined(__Plugin_DLL) || defined(__Quantity_DLL) || defined(__Resource_DLL) || defined(__SortTools_DLL) || defined(__StdFail_DLL) || defined(__Storage_DLL) || defined(__TColStd_DLL) || defined(__TCollection_DLL) || defined(__TShort_DLL) || defined(__Units_DLL) || defined(__UnitsAPI_DLL) || defined(__Dico_DLL)
|
||||
# define __Standard_API Standard_EXPORT
|
||||
# define __Standard_APIEXTERN Standard_EXPORTEXTERN
|
||||
# else
|
||||
|
Reference in New Issue
Block a user