1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/test/webfuse/test_util/invokation_handler.hpp
2020-07-19 09:52:25 +02:00

21 lines
324 B
C++

#ifndef WF_TEST_UTIL_INVOKATION_HANDLER_HPP
#define WF_TEST_UTIL_INVOKATION_HANDLER_HPP
#include <string>
struct wf_json;
namespace webfuse_test
{
class InvokationHandler
{
public:
virtual ~InvokationHandler() = default;
virtual std::string Invoke(char const * method, wf_json const * params) = 0;
};
}
#endif