1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 22:10:45 +00:00
falk-werner_webfuse-provider/test/webfuse/tests/integration/server.hpp

26 lines
355 B
C++
Raw Normal View History

#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