Get all properties for a specific frame
| 85 | |
| 86 | // Get all properties for a specific frame |
| 87 | std::string Negate::PropertiesJSON(int64_t requested_frame) const { |
| 88 | |
| 89 | // Generate JSON properties list |
| 90 | Json::Value root = BasePropertiesJSON(requested_frame); |
| 91 | |
| 92 | // Return formatted string |
| 93 | return root.toStyledString(); |
| 94 | } |
nothing calls this directly
no outgoing calls
no test coverage detected