File indexing completed on 2026-09-09 09:17:06
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _StepShape_BrepWithVoids_HeaderFile
0018 #define _StepShape_BrepWithVoids_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022
0023 #include <StepShape_HArray1OfOrientedClosedShell.hxx>
0024 #include <StepShape_ManifoldSolidBrep.hxx>
0025 #include <Standard_Integer.hxx>
0026 class TCollection_HAsciiString;
0027 class StepShape_ClosedShell;
0028 class StepShape_OrientedClosedShell;
0029
0030 class StepShape_BrepWithVoids;
0031 DEFINE_STANDARD_HANDLE(StepShape_BrepWithVoids, StepShape_ManifoldSolidBrep)
0032
0033 class StepShape_BrepWithVoids : public StepShape_ManifoldSolidBrep
0034 {
0035
0036 public:
0037
0038 Standard_EXPORT StepShape_BrepWithVoids();
0039
0040 Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& aName,
0041 const Handle(StepShape_ClosedShell)& aOuter,
0042 const Handle(StepShape_HArray1OfOrientedClosedShell)& aVoids);
0043
0044 Standard_EXPORT void SetVoids(const Handle(StepShape_HArray1OfOrientedClosedShell)& aVoids);
0045
0046 Standard_EXPORT Handle(StepShape_HArray1OfOrientedClosedShell) Voids() const;
0047
0048 Standard_EXPORT Handle(StepShape_OrientedClosedShell) VoidsValue(
0049 const Standard_Integer num) const;
0050
0051 Standard_EXPORT Standard_Integer NbVoids() const;
0052
0053 DEFINE_STANDARD_RTTIEXT(StepShape_BrepWithVoids, StepShape_ManifoldSolidBrep)
0054
0055 protected:
0056 private:
0057 Handle(StepShape_HArray1OfOrientedClosedShell) voids;
0058 };
0059
0060 #endif