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