mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
22 lines
277 B
C++
22 lines
277 B
C++
|
#ifndef WF_TEST_INTEGRATION_PROVIDER
|
||
|
#define WF_TEST_INTEGRATION_PROVIDER
|
||
|
|
||
|
namespace webfuse_test
|
||
|
{
|
||
|
|
||
|
class Provider
|
||
|
{
|
||
|
public:
|
||
|
Provider(char const * url);
|
||
|
~Provider();
|
||
|
void Start(void);
|
||
|
void Stop(void);
|
||
|
private:
|
||
|
class Private;
|
||
|
Private * d;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|