MCPcopy Create free account
hub / github.com/cpvrlab/ImagePlay / toJson

Method toJson

IPL/src/IPLProcess.cpp:252–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250}
251
252std::string IPLProcess::toJson()
253{
254 std::ostringstream json;
255 for (auto &entry: _properties)
256 {
257 auto &property = entry.second;
258 json << "{\n";
259 json << " \"type\": \"bool\"\n";
260 json << " \"value\": \"" << property->widget() << "\"\n";
261 json << "}\n";
262 }
263 return json.str();
264}
265
266void IPLProcess::checkPropertyKey(const char *name)
267{

Callers 1

writeProcessFileMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected