| 10 | namespace CesiumJsonWriter { |
| 11 | namespace { |
| 12 | void objWriter( |
| 13 | const std::any& obj, |
| 14 | JsonWriter& jsonWriter, |
| 15 | const ExtensionWriterContext& /* context */) { |
| 16 | writeJsonValue( |
| 17 | std::any_cast<const CesiumUtility::JsonValue&>(obj), |
| 18 | jsonWriter); |
| 19 | } |
| 20 | } // namespace |
| 21 | |
| 22 | ExtensionState ExtensionWriterContext::getExtensionState( |
nothing calls this directly
no test coverage detected