43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
// This file was generated by generate-classes.
|
|
// DO NOT EDIT THIS FILE!
|
|
#pragma once
|
|
|
|
#include <CesiumGltf/Library.h>
|
|
#include <CesiumGltf/NamedObject.h>
|
|
|
|
#include <string>
|
|
|
|
namespace CesiumGltf {
|
|
/**
|
|
* @brief An object defining a valid material variant
|
|
*/
|
|
struct CESIUMGLTF_API ExtensionModelKhrMaterialsVariantsValue final
|
|
: public CesiumGltf::NamedObject {
|
|
/**
|
|
* @brief The original name of this type.
|
|
*/
|
|
static constexpr const char* TypeName =
|
|
"ExtensionModelKhrMaterialsVariantsValue";
|
|
|
|
/**
|
|
* @brief The name of the material variant.
|
|
*/
|
|
std::string name;
|
|
|
|
/**
|
|
* @brief Calculates the size in bytes of this object, including the contents
|
|
* of all collections, pointers, and strings. This will NOT include the size
|
|
* of any extensions attached to the object. Calling this method may be slow
|
|
* as it requires traversing the object's entire structure.
|
|
*/
|
|
int64_t getSizeBytes() const {
|
|
int64_t accum = 0;
|
|
accum += int64_t(sizeof(ExtensionModelKhrMaterialsVariantsValue));
|
|
accum += CesiumGltf::NamedObject::getSizeBytes() -
|
|
int64_t(sizeof(CesiumGltf::NamedObject));
|
|
accum += int64_t(this->name.capacity() * sizeof(char));
|
|
return accum;
|
|
}
|
|
};
|
|
} // namespace CesiumGltf
|