1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/test/webfuse/test_util/ws_server.hpp
2020-07-19 09:52:25 +02:00

32 lines
576 B
C++

#ifndef WF_TEST_UTIL_WS_SERVER2_HPP
#define WF_TEST_UTIL_WS_SERVER2_HPP
#include <string>
namespace webfuse_test
{
class InvokationHandler;
class WsServer
{
WsServer(WsServer const &) = delete;
WsServer & operator=(WsServer const & ) = delete;
public:
WsServer(
InvokationHandler& handler,
std::string const & protocol,
int port = 0,
bool enable_tls = false);
virtual ~WsServer();
std::string const & GetUrl() const;
void SendMessage(char const * message);
private:
class Private;
Private * d;
};
}
#endif