MCPcopy Create free account
hub / github.com/OpenShot/libopenshot / JsonValue

Method JsonValue

src/DummyReader.cpp:156–164  ·  view source on GitHub ↗

Generate Json::Value for this object

Source from the content-addressed store, hash-verified

154
155// Generate Json::Value for this object
156Json::Value DummyReader::JsonValue() const {
157
158 // Create root json object
159 Json::Value root = ReaderBase::JsonValue(); // get parent properties
160 root["type"] = "DummyReader";
161
162 // return JsonValue
163 return root;
164}
165
166// Load JSON string into this object
167void DummyReader::SetJson(const std::string value) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected