cesium-native 0.43.0
Loading...
Searching...
No Matches
ExtensionModelMaxarMeshVariantsValue.h
1// This file was generated by generate-classes.
2// DO NOT EDIT THIS FILE!
3#pragma once
4
5#include <CesiumGltf/Library.h>
6#include <CesiumGltf/NamedObject.h>
7
8#include <string>
9
10namespace CesiumGltf {
14struct CESIUMGLTF_API ExtensionModelMaxarMeshVariantsValue final
19 static constexpr const char* TypeName =
20 "ExtensionModelMaxarMeshVariantsValue";
21
25 std::string name;
26
33 int64_t getSizeBytes() const {
34 int64_t accum = 0;
35 accum += int64_t(sizeof(ExtensionModelMaxarMeshVariantsValue));
37 int64_t(sizeof(CesiumGltf::NamedObject));
38 accum += int64_t(this->name.capacity() * sizeof(char));
39 return accum;
40 }
41};
42} // namespace CesiumGltf
Classes for working with glTF models.
int64_t getSizeBytes() const
Calculates the size in bytes of this object, including the contents of all collections,...
The base class for objects in a glTF that have a name.
Definition NamedObject.h:15
int64_t getSizeBytes() const
Calculates the size in bytes of this object, including the contents of all collections,...
Definition NamedObject.h:29