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:
@@ -127,13 +127,13 @@ public:
|
||||
Standard_EXPORT void PrintStatistics() const;
|
||||
|
||||
//! Set NonManifold flag
|
||||
Standard_EXPORT void SetNonManifold(Standard_Boolean theNonManifold)
|
||||
void SetNonManifold(Standard_Boolean theNonManifold)
|
||||
{
|
||||
myNonManifold = theNonManifold;
|
||||
}
|
||||
|
||||
//! Get NonManifold flag
|
||||
Standard_EXPORT Standard_Boolean IsNonManifold()
|
||||
Standard_Boolean IsNonManifold()
|
||||
{
|
||||
return myNonManifold;
|
||||
}
|
||||
|
Reference in New Issue
Block a user