Warning, file /include/opencascade/RWGltf_GltfPrimArrayData.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #ifndef _RWGltf_GltfPrimArrayData_HeaderFile
0016 #define _RWGltf_GltfPrimArrayData_HeaderFile
0017
0018 #include <NCollection_Buffer.hxx>
0019 #include <RWGltf_GltfAccessor.hxx>
0020 #include <RWGltf_GltfArrayType.hxx>
0021 #include <TCollection_AsciiString.hxx>
0022
0023
0024 class RWGltf_GltfPrimArrayData
0025 {
0026 public:
0027 Handle(NCollection_Buffer) StreamData;
0028 TCollection_AsciiString StreamUri;
0029 int64_t StreamOffset;
0030 int64_t StreamLength;
0031
0032 RWGltf_GltfAccessor Accessor;
0033 RWGltf_GltfArrayType Type;
0034
0035 RWGltf_GltfPrimArrayData()
0036 : StreamOffset (0), StreamLength (0), Type (RWGltf_GltfArrayType_UNKNOWN) {}
0037
0038 RWGltf_GltfPrimArrayData (RWGltf_GltfArrayType theType)
0039 : StreamOffset (0), StreamLength (0), Type (theType) {}
0040 };
0041
0042 #endif