mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
27 lines
506 B
C++
27 lines
506 B
C++
#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(bool use_tls = false);
|
|
~WebfuseServer();
|
|
std::string const & GetUrl();
|
|
json_t * Invoke(std::string method, json_t * params);
|
|
private:
|
|
class Private;
|
|
Private * d;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|