Generate Json::Value for this object
| 775 | |
| 776 | // Generate Json::Value for this object |
| 777 | Json::Value FrameMapper::JsonValue() const { |
| 778 | |
| 779 | // Create root json object |
| 780 | Json::Value root = ReaderBase::JsonValue(); // get parent properties |
| 781 | root["type"] = "FrameMapper"; |
| 782 | if (reader) { |
| 783 | root["reader"] = reader->JsonValue(); |
| 784 | } |
| 785 | |
| 786 | // return JsonValue |
| 787 | return root; |
| 788 | } |
| 789 | |
| 790 | // Load JSON string into this object |
| 791 | void FrameMapper::SetJson(const std::string value) { |
nothing calls this directly
no outgoing calls
no test coverage detected