1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 21:10:45 +00:00
falk-werner_webfuse-provider/test/webfuse_provider/test_util/client.hpp
2020-06-25 19:21:00 +02:00

26 lines
427 B
C++

#ifndef WFP_TEST_UTIL_CLIENT_HPP
#define WFP_TEST_UTIL_CLIENT_HPP
#include "webfuse_provider/client_config.h"
#include <string>
namespace webfuse_test
{
class Client
{
Client(Client const &) = delete;
Client & operator=(Client const &) = delete;
public:
Client(wfp_client_config * config, std::string const & url);
~Client();
void Disconnect();
private:
class Private;
Private * d;
};
}
#endif