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.hpp
2020-06-30 20:50:39 +02:00

22 lines
286 B
C++

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