cesium-native 0.43.0
Loading...
Searching...
No Matches
Subtrees.h
1// This file was generated by generate-classes.
2// DO NOT EDIT THIS FILE!
3#pragma once
4
5#include <Cesium3DTiles/Library.h>
6#include <CesiumUtility/ExtensibleObject.h>
7
8#include <string>
9
10namespace Cesium3DTiles {
14struct CESIUM3DTILES_API Subtrees final
19 static constexpr const char* TypeName = "Subtrees";
20
24 std::string uri;
25
32 int64_t getSizeBytes() const {
33 int64_t accum = 0;
34 accum += int64_t(sizeof(Subtrees));
36 int64_t(sizeof(CesiumUtility::ExtensibleObject));
37 accum += int64_t(this->uri.capacity() * sizeof(char));
38 return accum;
39 }
40};
41} // namespace Cesium3DTiles
Classes for using 3D Tiles.
Definition Buffer.h:7
An object describing the location of subtree files.
Definition Subtrees.h:15
int64_t getSizeBytes() const
Calculates the size in bytes of this object, including the contents of all collections,...
Definition Subtrees.h:32
std::string uri
A URI with embedded expressions that describes the resource that is associated with an implicit tile ...
Definition Subtrees.h:24
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 ...