summaryrefslogtreecommitdiff
path: root/libpqpp/pq-mock.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-01-31 20:12:57 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2019-02-03 19:02:43 +0000
commit9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59 (patch)
treecb046d5faf68ca86c4e9c49245abdcccd01940f8 /libpqpp/pq-mock.h
parentSwitch to structured binding interface (diff)
downloadlibdbpp-postgresql-9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59.tar.bz2
libdbpp-postgresql-9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59.tar.xz
libdbpp-postgresql-9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59.zip
Remove boost::filesystem in favour of std::filesystem
Diffstat (limited to 'libpqpp/pq-mock.h')
-rw-r--r--libpqpp/pq-mock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpqpp/pq-mock.h b/libpqpp/pq-mock.h
index 8ab2fe1..685b75c 100644
--- a/libpqpp/pq-mock.h
+++ b/libpqpp/pq-mock.h
@@ -2,14 +2,14 @@
#define MOCKPQDATASOURCE_H
#include <mockDatabase.h>
-#include <boost/filesystem/path.hpp>
+#include <filesystem>
#include <visibility.h>
#include "pq-connection.h"
namespace PQ {
class DLL_PUBLIC Mock : public DB::MockServerDatabase {
public:
- Mock(const std::string & master, const std::string & name, const std::vector<boost::filesystem::path> & ss);
+ Mock(const std::string & master, const std::string & name, const std::vector<std::filesystem::path> & ss);
~Mock();
DB::ConnectionPtr openConnection() const override;