summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-mock.h
diff options
context:
space:
mode:
Diffstat (limited to 'libsqlitepp/sqlite-mock.h')
-rw-r--r--libsqlitepp/sqlite-mock.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/libsqlitepp/sqlite-mock.h b/libsqlitepp/sqlite-mock.h
index 45caef9..fd8a8e9 100644
--- a/libsqlitepp/sqlite-mock.h
+++ b/libsqlitepp/sqlite-mock.h
@@ -1,14 +1,14 @@
#ifndef MOCKSQLITEDATASOURCE_H
#define MOCKSQLITEDATASOURCE_H
-#include <mockDatabase.h>
+#include <c++11Helpers.h>
#include <filesystem>
+#include <mockDatabase.h>
#include <visibility.h>
-#include <c++11Helpers.h>
namespace SQLite {
-class DLL_PUBLIC Mock : public DB::MockDatabase {
+ class DLL_PUBLIC Mock : public DB::MockDatabase {
public:
Mock(const std::string & root, const std::string & name, const std::vector<std::filesystem::path> & ss);
Mock(const std::string & name, const std::vector<std::filesystem::path> & ss);
@@ -24,10 +24,8 @@ class DLL_PUBLIC Mock : public DB::MockDatabase {
private:
const std::filesystem::path testDbPath;
-};
+ };
}
#endif
-
-