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

23 lines
307 B
C++
Raw Normal View History

2020-07-04 20:38:37 +00:00
#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