5#include <Cesium3DTiles/ClassProperty.h>
6#include <Cesium3DTiles/Library.h>
7#include <CesiumUtility/ExtensibleObject.h>
11#include <unordered_map>
21 static constexpr const char* TypeName =
"Class";
26 std::optional<std::string>
name;
38 std::unordered_map<std::string, Cesium3DTiles::ClassProperty>
properties;
53 accum += int64_t(
sizeof(
Class));
57 accum += int64_t(this->name->capacity() *
sizeof(
char));
59 if (this->description) {
60 accum += int64_t(this->description->capacity() *
sizeof(
char));
63 this->properties.bucket_count() *
65 for (
const auto& [k, v] : this->properties) {
66 accum += int64_t(k.capacity() *
sizeof(
char) -
sizeof(std::string));
70 accum += int64_t(this->parent->capacity() *
sizeof(
char));
Classes for using 3D Tiles.
A single property of a metadata class.
A class containing a set of properties.
std::optional< std::string > parent
Experimental. The parent class ID.
int64_t getSizeBytes() const
Calculates the size in bytes of this object, including the contents of all collections,...
std::optional< std::string > name
The name of the class, e.g. for display purposes.
std::optional< std::string > description
The description of the class.
std::unordered_map< std::string, Cesium3DTiles::ClassProperty > properties
A dictionary, where each key is a property ID and each value is an object defining the property....
The base class for objects that have extensions and extras.
int64_t getSizeBytes() const
Calculates the size in bytes of this ExtensibleObject, including all of its extras but NOT including ...