File indexing completed on 2025-01-18 10:05:16
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
0028 typedef NCollection_Array1<Handle(StepVisual_TessellatedItem)> StepVisual_Array1OfTessellatedItem;
0029
0030 DEFINE_STANDARD_HANDLE(StepVisual_TessellatedGeometricSet, StepVisual_TessellatedItem)
0031 class StepVisual_TessellatedGeometricSet : public StepVisual_TessellatedItem
0032 {
0033 public:
0034
0035 DEFINE_STANDARD_ALLOC
0036
0037
0038 Standard_EXPORT StepVisual_TessellatedGeometricSet();
0039
0040 Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theName, 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
0049 DEFINE_STANDARD_RTTIEXT(StepVisual_TessellatedGeometricSet,StepVisual_TessellatedItem)
0050 };
0051 #endif