cesium-native  0.41.0
EnumValue.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 
7 #include <CesiumUtility/ExtensibleObject.h>
8 
9 #include <cstdint>
10 #include <optional>
11 #include <string>
12 
13 namespace CesiumGltf {
17 struct CESIUMGLTF_API EnumValue final : public CesiumUtility::ExtensibleObject {
18  static inline constexpr const char* TypeName = "EnumValue";
19 
23  std::string name;
24 
28  std::optional<std::string> description;
29 
33  int64_t value = int64_t();
34 };
35 } // namespace CesiumGltf
Classes for working with glTF models.
An enum value.
Definition: EnumValue.h:17
std::optional< std::string > description
The description of the enum value.
Definition: EnumValue.h:28
std::string name
The name of the enum value.
Definition: EnumValue.h:23
The base class for objects that have extensions and extras.