cesium-native  0.41.0
Asset.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 <optional>
10 #include <string>
11 
12 namespace CesiumGltf {
16 struct CESIUMGLTF_API Asset final : public CesiumUtility::ExtensibleObject {
17  static inline constexpr const char* TypeName = "Asset";
18 
23  std::optional<std::string> copyright;
24 
28  std::optional<std::string> generator;
29 
34  std::string version;
35 
41  std::optional<std::string> minVersion;
42 };
43 } // namespace CesiumGltf
Classes for working with glTF models.
Metadata about the glTF asset.
Definition: Asset.h:16
std::optional< std::string > copyright
A copyright message suitable for display to credit the content creator.
Definition: Asset.h:23
std::optional< std::string > generator
Tool that generated this glTF model. Useful for debugging.
Definition: Asset.h:28
std::optional< std::string > minVersion
The minimum glTF version in the form of <major>.<minor> that this asset targets. This property MUST N...
Definition: Asset.h:41
std::string version
The glTF version in the form of <major>.<minor> that this asset targets.
Definition: Asset.h:34
The base class for objects that have extensions and extras.