| 9 | |
| 10 | template<class T> |
| 11 | std::shared_ptr<T> MakeRequestObject(nlohmann::json json) { |
| 12 | auto object = std::make_shared<T>(); |
| 13 | object->Deserialize(json); |
| 14 | |
| 15 | return object; |
| 16 | } |
| 17 | |
| 18 | class LSPHandle { |
| 19 | public: |
nothing calls this directly
no test coverage detected