-
Notifications
You must be signed in to change notification settings - Fork 275
Expand file tree
/
Copy pathConditionalContentItemReader.h
More file actions
75 lines (62 loc) · 2.11 KB
/
Copy pathConditionalContentItemReader.h
File metadata and controls
75 lines (62 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// This file was generated by generate-classes.
// DO NOT EDIT THIS FILE!
#pragma once
#include <Cesium3DTiles/ConditionalContentItem.h>
#include <Cesium3DTilesReader/Library.h>
#include <CesiumJsonReader/JsonReader.h>
#include <CesiumJsonReader/JsonReaderOptions.h>
#include <rapidjson/fwd.h>
#include <span>
#include <vector>
namespace Cesium3DTiles {
struct ConditionalContentItem;
} // namespace Cesium3DTiles
namespace Cesium3DTilesReader {
/**
* @brief Reads \ref Cesium3DTiles::ConditionalContentItem
* "ConditionalContentItem" instances from JSON.
*/
class CESIUM3DTILESREADER_API ConditionalContentItemReader {
public:
/**
* @brief Constructs a new instance.
*/
ConditionalContentItemReader();
/**
* @brief Gets the options controlling how the JSON is read.
*/
CesiumJsonReader::JsonReaderOptions& getOptions();
/**
* @brief Gets the options controlling how the JSON is read.
*/
const CesiumJsonReader::JsonReaderOptions& getOptions() const;
/**
* @brief Reads an instance of ConditionalContentItem from a byte buffer.
*
* @param data The buffer from which to read the instance.
* @return The result of reading the instance.
*/
CesiumJsonReader::ReadJsonResult<Cesium3DTiles::ConditionalContentItem>
readFromJson(const std::span<const std::byte>& data) const;
/**
* @brief Reads an instance of ConditionalContentItem from a rapidJson::Value.
*
* @param value The value from which to read the instance.
* @return The result of reading the instance.
*/
CesiumJsonReader::ReadJsonResult<Cesium3DTiles::ConditionalContentItem>
readFromJson(const rapidjson::Value& value) const;
/**
* @brief Reads an array of instances of ConditionalContentItem from a
* rapidJson::Value.
*
* @param value The value from which to read the array of instances.
* @return The result of reading the array of instances.
*/
CesiumJsonReader::ReadJsonResult<
std::vector<Cesium3DTiles::ConditionalContentItem>>
readArrayFromJson(const rapidjson::Value& value) const;
private:
CesiumJsonReader::JsonReaderOptions _options;
};
} // namespace Cesium3DTilesReader