1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 13:10:45 +00:00
falk-werner_webfuse-provider/test/webfuse/tests/integration/server.hpp
2020-02-20 17:15:13 +01:00

23 lines
300 B
C++

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