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:
@@ -38,13 +38,13 @@ public:
|
||||
const Handle(StepGeom_GeometricRepresentationItem)& theFillStyleTarget);
|
||||
|
||||
//! Returns field fill_style_target
|
||||
Standard_EXPORT Handle(StepGeom_GeometricRepresentationItem) FillStyleTarget() const
|
||||
Handle(StepGeom_GeometricRepresentationItem) FillStyleTarget() const
|
||||
{
|
||||
return myFillStyleTarget;
|
||||
}
|
||||
|
||||
//! Set field fill_style_target
|
||||
Standard_EXPORT void SetFillStyleTarget (const Handle(StepGeom_GeometricRepresentationItem)& theTarget)
|
||||
void SetFillStyleTarget (const Handle(StepGeom_GeometricRepresentationItem)& theTarget)
|
||||
{
|
||||
myFillStyleTarget = theTarget;
|
||||
}
|
||||
|
@@ -41,12 +41,12 @@ public:
|
||||
const Handle(StepVisual_ViewVolume)& thePerspectiveOfVolume,
|
||||
const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping);
|
||||
|
||||
Standard_EXPORT void SetShapeClipping(const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping)
|
||||
void SetShapeClipping(const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping)
|
||||
{
|
||||
myShapeClipping = theShapeClipping;
|
||||
}
|
||||
|
||||
Standard_EXPORT const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect) ShapeClipping()
|
||||
const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect) ShapeClipping()
|
||||
{
|
||||
return myShapeClipping;
|
||||
}
|
||||
|
@@ -37,12 +37,12 @@ public:
|
||||
Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theName,
|
||||
const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping);
|
||||
|
||||
Standard_EXPORT void SetShapeClipping(const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping)
|
||||
void SetShapeClipping(const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping)
|
||||
{
|
||||
myShapeClipping = theShapeClipping;
|
||||
}
|
||||
|
||||
Standard_EXPORT const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect) ShapeClipping()
|
||||
const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect) ShapeClipping()
|
||||
{
|
||||
return myShapeClipping;
|
||||
}
|
||||
|
@@ -37,12 +37,12 @@ public:
|
||||
Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theName,
|
||||
const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect)& theShapeClipping);
|
||||
|
||||
Standard_EXPORT void SetShapeClipping(const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect)& theShapeClipping)
|
||||
void SetShapeClipping(const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect)& theShapeClipping)
|
||||
{
|
||||
myShapeClipping = theShapeClipping;
|
||||
}
|
||||
|
||||
Standard_EXPORT const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect) ShapeClipping()
|
||||
const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect) ShapeClipping()
|
||||
{
|
||||
return myShapeClipping;
|
||||
}
|
||||
|
Reference in New Issue
Block a user