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

0027562: Coding - avoid exporting of inline methods

This commit is contained in:
kgv
2016-06-03 15:35:52 +03:00
committed by bugmaster
parent 83b0f13a58
commit be5c360207
48 changed files with 195 additions and 195 deletions

View File

@@ -73,11 +73,11 @@ class TObj_Model : public MMgt_TShared
*/
//! Set messenger to use for messages output
Standard_EXPORT void SetMessenger (const Handle(Message_Messenger) &theMsgr) { myMessenger = theMsgr; }
void SetMessenger (const Handle(Message_Messenger) &theMsgr) { myMessenger = theMsgr; }
//! Get messenger used for messages output (by default, the messenger from
//! application is used)
Standard_EXPORT Handle(Message_Messenger) Messenger () const { return myMessenger; }
Handle(Message_Messenger) Messenger () const { return myMessenger; }
public:
/**
@@ -302,7 +302,7 @@ class TObj_Model : public MMgt_TShared
//! Sets OCAF label on which model data are stored.
//! Used by persistence mechanism.
void Standard_EXPORT SetLabel(const TDF_Label& theLabel) { myLabel = theLabel; }
void SetLabel(const TDF_Label& theLabel) { myLabel = theLabel; }
protected:

View File

@@ -182,7 +182,7 @@ class TObj_Object : public MMgt_TShared
//! Returns name for copy
//! default implementation returns the same name
virtual Standard_EXPORT Handle(TCollection_HExtendedString) GetNameForClone
virtual Handle(TCollection_HExtendedString) GetNameForClone
( const Handle(TObj_Object)& ) const
{ return GetName(); }
@@ -272,7 +272,7 @@ class TObj_Object : public MMgt_TShared
//! Invokes from TObj_TReference::BeforeForget().
//! theLabel - label on that reference become removed
//! Default implementation is empty
virtual Standard_EXPORT void BeforeForgetReference( const TDF_Label& /*theLabel*/ )
virtual void BeforeForgetReference( const TDF_Label& /*theLabel*/ )
{}
public:

View File

@@ -86,7 +86,7 @@ class TObj_Partition : public TObj_Object
(const Handle(TCollection_HExtendedString)& thePrefix);
//! Returns prefix for names of the objects in partition.
Standard_EXPORT Handle(TCollection_HExtendedString) GetNamePrefix() const
Handle(TCollection_HExtendedString) GetNamePrefix() const
{ return myPrefix; }
//! Generates and returns name for new object in partition.
@@ -117,7 +117,7 @@ class TObj_Partition : public TObj_Object
*/
//! Does nothing in the partition.
virtual Standard_EXPORT Standard_Boolean Update()
virtual Standard_Boolean Update()
{return Standard_True;}
protected: