summaryrefslogtreecommitdiff
path: root/libpqpp/pq-prepared.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-09-21 17:59:41 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-09-21 17:59:41 +0100
commit465ea24362ee267cf83909efa0b5cdee689ff1f7 (patch)
treed51980f0d0ca1460c320704aea50030043692e7e /libpqpp/pq-prepared.cpp
parentPass cppcheck and clang-tidy (diff)
downloadlibdbpp-postgresql-465ea24362ee267cf83909efa0b5cdee689ff1f7.tar.bz2
libdbpp-postgresql-465ea24362ee267cf83909efa0b5cdee689ff1f7.tar.xz
libdbpp-postgresql-465ea24362ee267cf83909efa0b5cdee689ff1f7.zip
First commit passing IWYU
Diffstat (limited to 'libpqpp/pq-prepared.cpp')
-rw-r--r--libpqpp/pq-prepared.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/libpqpp/pq-prepared.cpp b/libpqpp/pq-prepared.cpp
index 640b3db..78ad285 100644
--- a/libpqpp/pq-prepared.cpp
+++ b/libpqpp/pq-prepared.cpp
@@ -1,5 +1,12 @@
#include "pq-prepared.h"
+#include "command.h"
+#include "pq-command.h"
#include "pq-connection.h"
+#include <iosfwd>
+#include <libpq-fe.h>
+#include <map>
+#include <utility>
+#include <vector>
PQ::PreparedStatement::PreparedStatement(Connection * c, const std::string & sql, const DB::CommandOptionsCPtr & opts) :
DB::Command(sql), Command(c, sql, opts), pstmt(nullptr)