diff options
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; }; } |