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