mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0027562: Coding - avoid exporting of inline methods
This commit is contained in:
@@ -51,7 +51,7 @@ public:
|
||||
void UnregisterCallback();
|
||||
|
||||
//! Destructor
|
||||
virtual Standard_EXPORT ~Standard_ErrorHandlerCallback ();
|
||||
virtual ~Standard_ErrorHandlerCallback ();
|
||||
|
||||
//! The callback function to perform necessary callback action.
|
||||
//! Called by the exception handler when it is being destroyed but
|
||||
|
@@ -150,7 +150,7 @@ public:
|
||||
Standard_EXPORT Standard_Boolean TryLock ();
|
||||
|
||||
//! Method to unlock the mutex; releases it to other users
|
||||
Standard_EXPORT void Unlock ();
|
||||
void Unlock ();
|
||||
|
||||
private:
|
||||
|
||||
|
@@ -90,7 +90,7 @@ public:
|
||||
//!@name Reference counting, for use by handle<>
|
||||
|
||||
//! Get the reference counter of this object
|
||||
Standard_EXPORT Standard_Integer GetRefCount() const { return count; }
|
||||
Standard_Integer GetRefCount() const { return count; }
|
||||
|
||||
//! Increments the reference counter of this object
|
||||
Standard_EXPORT void IncrementRefCounter() const;
|
||||
|
@@ -176,7 +176,7 @@ namespace opencascade {
|
||||
class type_instance<void>
|
||||
{
|
||||
public:
|
||||
Standard_EXPORT static Handle(Standard_Type) get () { return 0; }
|
||||
static Handle(Standard_Type) get () { return 0; }
|
||||
};
|
||||
|
||||
// Implementation of static function returning instance of the
|
||||
|
Reference in New Issue
Block a user