1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +03:00

0032810: Coding - missing Standard_EXPORT in Standard_ErrorHandler

This commit is contained in:
aml 2022-01-28 18:39:49 +03:00 committed by vsr
parent cda9e99e4c
commit cdb006be8e

View File

@ -155,12 +155,21 @@ public:
DEFINE_STANDARD_ALLOC DEFINE_STANDARD_ALLOC
//! Registers this callback object in the current error handler (if found). //! Registers this callback object in the current error handler (if found).
#if defined(OCC_CONVERT_SIGNALS)
Standard_EXPORT
#endif
void RegisterCallback(); void RegisterCallback();
//! Unregisters this callback object from the error handler. //! Unregisters this callback object from the error handler.
#if defined(OCC_CONVERT_SIGNALS)
Standard_EXPORT
#endif
void UnregisterCallback(); void UnregisterCallback();
//! Destructor //! Destructor
#if defined(OCC_CONVERT_SIGNALS)
Standard_EXPORT
#endif
virtual ~Callback(); virtual ~Callback();
//! The callback function to perform necessary callback action. //! The callback function to perform necessary callback action.
@ -171,6 +180,9 @@ public:
protected: protected:
//! Empty constructor //! Empty constructor
#if defined(OCC_CONVERT_SIGNALS)
Standard_EXPORT
#endif
Callback(); Callback();
private: private: