diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-24 13:06:07 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-24 13:09:28 +0000 |
commit | ab47c39c82abee7f0e0cff981dc352fdc310a6fe (patch) | |
tree | 238979d93b5c4c810c130367fcaccdfacf420b9b /libsqlitepp/sqlite-mock.h | |
parent | Don't rely on libdbppcore's columns (diff) | |
download | libdbpp-sqlite-ab47c39c82abee7f0e0cff981dc352fdc310a6fe.tar.bz2 libdbpp-sqlite-ab47c39c82abee7f0e0cff981dc352fdc310a6fe.tar.xz libdbpp-sqlite-ab47c39c82abee7f0e0cff981dc352fdc310a6fe.zip |
Bring up-to-date with libdbpp.
Diffstat (limited to 'libsqlitepp/sqlite-mock.h')
-rw-r--r-- | libsqlitepp/sqlite-mock.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libsqlitepp/sqlite-mock.h b/libsqlitepp/sqlite-mock.h index 4580778..cc182d4 100644 --- a/libsqlitepp/sqlite-mock.h +++ b/libsqlitepp/sqlite-mock.h @@ -2,15 +2,15 @@ #define MOCKSQLITEDATASOURCE_H #include <mockDatabase.h> -#include <boost/filesystem/path.hpp> +#include <filesystem> #include <visibility.h> namespace SQLite { class DLL_PUBLIC Mock : public DB::MockDatabase { public: - Mock(const std::string & root, const std::string & name, const std::vector<boost::filesystem::path> & ss); - Mock(const std::string & name, const std::vector<boost::filesystem::path> & ss); + 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); ~Mock(); protected: @@ -20,7 +20,7 @@ class DLL_PUBLIC Mock : public DB::MockDatabase { DB::ConnectionPtr openConnection() const override; private: - const boost::filesystem::path testDbPath; + const std::filesystem::path testDbPath; }; } |