| 20 | #include "json/json.h" |
| 21 | |
| 22 | class JsonCppStringResult : public StringResult<JsonCppStringResult> { |
| 23 | public: |
| 24 | std::string_view str_impl() const { return data.c_str(); } |
| 25 | std::string data; |
| 26 | }; |
| 27 | |
| 28 | class JsonCppParseResult |
| 29 | : public ParseResult<JsonCppParseResult, JsonCppStringResult> { |
nothing calls this directly
no outgoing calls
no test coverage detected