1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +03:00

0029590: Coding - avoid usage of Standard_EXPORT attribute for inline methods

All occurrences of Standard_EXPORT attached to inline methods in OCCT code are eliminated.
Some unused classes and C++ files producing no code are deleted.
This commit is contained in:
abv
2018-03-19 10:07:06 +03:00
committed by bugmaster
parent 0553a8ea99
commit 0f57ab750d
121 changed files with 407 additions and 1307 deletions

View File

@@ -86,7 +86,9 @@ public:
//! Controller already set
//! Virtual destructor
Standard_EXPORT XSControl_Reader(const Handle(XSControl_WorkSession)& WS, const Standard_Boolean scratch = Standard_True);
Standard_EXPORT virtual ~XSControl_Reader() {}
//! Empty virtual destructor
virtual ~XSControl_Reader() {}
//! Sets a specific norm to <me>
//! Returns True if done, False if <norm> is not available

View File

@@ -63,7 +63,7 @@ class XSControl_TransferWriter : public Standard_Transient
{ return myController; }
//! Sets a new Controller, also sets a new FinderProcess
Standard_EXPORT void SetController (const Handle(XSControl_Controller)& theCtl)
void SetController (const Handle(XSControl_Controller)& theCtl)
{
myController = theCtl;
Clear(-1);