cesium-native  0.41.0
NamedObject.h
1 #pragma once
2 
3 #include "CesiumGltf/Library.h"
4 
5 #include <CesiumUtility/ExtensibleObject.h>
6 
7 #include <string>
8 
9 namespace CesiumGltf {
15 struct CESIUMGLTF_API NamedObject : public CesiumUtility::ExtensibleObject {
22  std::string name;
23 };
24 } // namespace CesiumGltf
Classes for working with glTF models.
The base class for objects in a glTF that have a name.
Definition: NamedObject.h:15
std::string name
The user-defined name of this object.
Definition: NamedObject.h:22
The base class for objects that have extensions and extras.