cesium-native 0.61.0
Loading...
Searching...
No Matches
LineStringReader.h
1// This file was generated by generate-classes.
2// DO NOT EDIT THIS FILE!
3#pragma once
4
5#include <CesiumGltf/LineString.h>
6#include <CesiumGltfReader/Library.h>
7#include <CesiumJsonReader/JsonReader.h>
8#include <CesiumJsonReader/JsonReaderOptions.h>
9
10#include <rapidjson/fwd.h>
11
12#include <span>
13#include <vector>
14
15namespace CesiumGltf {
16struct LineString;
17} // namespace CesiumGltf
18
19namespace CesiumGltfReader {
20
71
72} // namespace CesiumGltfReader
CesiumJsonReader::ReadJsonResult< std::vector< CesiumGltf::LineString > > readArrayFromJson(const rapidjson::Value &value) const
Reads an array of instances of LineString from a rapidJson::Value.
LineStringReader()
Constructs a new instance.
CesiumJsonReader::ReadJsonResult< CesiumGltf::LineString > readFromJson(const rapidjson::Value &value) const
Reads an instance of LineString from a rapidJson::Value.
CesiumJsonReader::JsonReaderOptions & getOptions()
Gets the options controlling how the JSON is read.
CesiumJsonReader::ReadJsonResult< CesiumGltf::LineString > readFromJson(const std::span< const std::byte > &data) const
Reads an instance of LineString from a byte buffer.
const CesiumJsonReader::JsonReaderOptions & getOptions() const
Gets the options controlling how the JSON is read.
Holds options for reading statically-typed data structures from JSON.
Classes for reading glTF models.
Definition GltfReader.h:23
Classes for working with glTF models.
Represents one or more line strings to be drawn as edges of a triangle mesh.
Definition LineString.h:16
The result of JsonReader::readJson.
Definition JsonReader.h:23