mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40:49 +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:
@@ -47,7 +47,7 @@ public:
|
||||
//! Setup meshing algorithm by name. <br>
|
||||
//! Returns TRUE if requested tool is available. <br>
|
||||
//! On fail Factory will continue to use previous algo.
|
||||
Standard_EXPORT Standard_Boolean SetDefaultName(const TCollection_AsciiString& theName)
|
||||
Standard_Boolean SetDefaultName(const TCollection_AsciiString& theName)
|
||||
{
|
||||
return SetDefault(theName, myFunctionName);
|
||||
}
|
||||
@@ -61,7 +61,7 @@ public:
|
||||
//! Advanced function. Changes function name to retrieve from plugin. <br>
|
||||
//! Returns TRUE if requested tool is available. <br>
|
||||
//! On fail Factory will continue to use previous algo.
|
||||
Standard_EXPORT Standard_Boolean SetFunctionName(const TCollection_AsciiString& theFuncName)
|
||||
Standard_Boolean SetFunctionName(const TCollection_AsciiString& theFuncName)
|
||||
{
|
||||
return SetDefault(myDefaultName, theFuncName);
|
||||
}
|
||||
|
Reference in New Issue
Block a user