File indexing completed on 2026-07-29 09:16:38
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepVisual_TessellatedGeometricSet_HeaderFile
0017 #define _StepVisual_TessellatedGeometricSet_HeaderFile
0018 #include <Standard.hxx>
0019 #include <Standard_DefineAlloc.hxx>
0020 #include <Standard_Handle.hxx>
0021
0022 #include <StepVisual_TessellatedItem.hxx>
0023 #include <NCollection_Array1.hxx>
0024
0025 #include <NCollection_Handle.hxx>
0026
0027 typedef NCollection_Array1<Handle(StepVisual_TessellatedItem)> StepVisual_Array1OfTessellatedItem;
0028
0029 DEFINE_STANDARD_HANDLE(StepVisual_TessellatedGeometricSet, StepVisual_TessellatedItem)
0030
0031 class StepVisual_TessellatedGeometricSet : public StepVisual_TessellatedItem
0032 {
0033 public:
0034 DEFINE_STANDARD_ALLOC
0035
0036
0037 Standard_EXPORT StepVisual_TessellatedGeometricSet();
0038
0039 Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theName,
0040 const NCollection_Handle<StepVisual_Array1OfTessellatedItem>& theItems);
0041
0042 Standard_EXPORT NCollection_Handle<StepVisual_Array1OfTessellatedItem> Items() const;
0043
0044 private:
0045 NCollection_Handle<StepVisual_Array1OfTessellatedItem> myItems;
0046
0047 public:
0048 DEFINE_STANDARD_RTTIEXT(StepVisual_TessellatedGeometricSet, StepVisual_TessellatedItem)
0049 };
0050 #endif