summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-mock.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-11-18 16:55:31 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2020-11-18 16:55:31 +0000
commit0af57e2595922c9ee59d7cd489daf37a3550496c (patch)
tree73f8069e421e64222380fb3d30b2fb1277f80cd3 /libsqlitepp/sqlite-mock.h
parentFixes for tidy (diff)
downloadlibdbpp-sqlite-0af57e2595922c9ee59d7cd489daf37a3550496c.tar.bz2
libdbpp-sqlite-0af57e2595922c9ee59d7cd489daf37a3550496c.tar.xz
libdbpp-sqlite-0af57e2595922c9ee59d7cd489daf37a3550496c.zip
Clang format
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
-
-