summaryrefslogtreecommitdiff
path: root/project2/sql/sql-modSQLite.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/sql/sql-modSQLite.h')
-rw-r--r--project2/sql/sql-modSQLite.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/project2/sql/sql-modSQLite.h b/project2/sql/sql-modSQLite.h
deleted file mode 100644
index 36bca22..0000000
--- a/project2/sql/sql-modSQLite.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef MOCKSQLITEDATASOURCE_H
-#define MOCKSQLITEDATASOURCE_H
-
-#include "mockDatabase.h"
-#include <boost/filesystem/path.hpp>
-
-class MockSQLiteDatabase : public MockDatabase {
- public:
- MockSQLiteDatabase(const std::string & name, const std::vector<boost::filesystem::path> & ss);
- ~MockSQLiteDatabase();
-
- protected:
- void DropDatabase() const override;
- void CreateNewDatabase() const override;
-
- DB::Connection * openConnection() const override;
-
- private:
- const boost::filesystem::path testDbPath;
-};
-
-#endif
-
-