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