You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
514 B

#ifndef WFP_TEST_UTIL_WEBFUSE_SERVER_HPP
#define WFP_TEST_UTIL_WEBFUSE_SERVER_HPP
#include <string>
#include <jansson.h>
namespace webfuse_test
{
class WebfuseServer
{
WebfuseServer(WebfuseServer const &) = delete;
WebfuseServer& operator=(WebfuseServer const &) = delete;
public:
WebfuseServer();
~WebfuseServer();
std::string const & GetUrl();
void AwaitConnection();
json_t * Invoke(std::string method, json_t * params);
private:
class Private;
Private * d;
};
}
#endif