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/server_protocol.hpp
2020-07-04 22:38:37 +02:00

23 lines
307 B
C++

#ifndef WF_TEST_UTIL_SERVER_PROTOCOL_HPP
#define WF_TEST_UTIL_SERVER_PROTOCOL_HPP
namespace webfuse_test
{
class ServerProtocol
{
public:
ServerProtocol();
~ServerProtocol();
char const * GetBaseDir() const;
int GetPort() const;
private:
class Private;
Private * d;
};
}
#endif