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