1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 13:20:46 +00:00
falk-werner_webfuse-provider/test/webfuse/tests/integration/server.hpp
2020-06-12 13:32:31 +02:00

26 lines
355 B
C++

#ifndef WF_TEST_INTEGRATION_SERVER_HPP
#define WF_TEST_INTEGRATION_SERVER_HPP
#include <string>
namespace webfuse_test
{
class Server
{
public:
Server();
~Server();
void Start(void);
void Stop(void);
char const * GetBaseDir(void) const;
std::string GetUrl(void) const;
private:
class Private;
Private * d;
};
}
#endif