#ifndef WFP_TEST_INTEGRATION_SERVER_HPP #define WFP_TEST_INTEGRATION_SERVER_HPP #include 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