blob: e8b736633be70c121f0f074c74361bf729e01d9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef MOCKPQDATASOURCE_H
#define MOCKPQDATASOURCE_H
#include <mockDatabase.h>
#include <boost/filesystem/path.hpp>
#include <visibility.h>
namespace PQ {
class DLL_PUBLIC Mock : public DB::MockServerDatabase {
public:
Mock(const std::string & master, const std::string & name, const std::vector<boost::filesystem::path> & ss);
~Mock();
DB::Connection * openConnection() const override;
protected:
void DropDatabase() const override;
};
}
#endif
|