初始提交: UE5.3项目基础框架
This commit is contained in:
21
Plugins/CesiumForUnreal/Source/ThirdParty/include/CesiumJsonWriter/JsonObjectWriter.h
vendored
Normal file
21
Plugins/CesiumForUnreal/Source/ThirdParty/include/CesiumJsonWriter/JsonObjectWriter.h
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
// forward declarations
|
||||
namespace CesiumJsonWriter {
|
||||
class JsonWriter;
|
||||
}
|
||||
|
||||
// forward declarations
|
||||
namespace CesiumUtility {
|
||||
class JsonValue;
|
||||
}
|
||||
|
||||
namespace CesiumJsonWriter {
|
||||
/**
|
||||
* @brief Writes the given \ref CesiumUtility::JsonValue to the provided writer.
|
||||
*
|
||||
* @param value The value to write.
|
||||
* @param writer The writer used to write the provided value.
|
||||
*/
|
||||
void writeJsonValue(const CesiumUtility::JsonValue& value, JsonWriter& writer);
|
||||
} // namespace CesiumJsonWriter
|
||||
Reference in New Issue
Block a user