mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
21 lines
324 B
C++
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
|