diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-21 17:59:41 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-21 17:59:41 +0100 |
commit | 465ea24362ee267cf83909efa0b5cdee689ff1f7 (patch) | |
tree | d51980f0d0ca1460c320704aea50030043692e7e /libpqpp/pq-prepared.h | |
parent | Pass cppcheck and clang-tidy (diff) | |
download | libdbpp-postgresql-465ea24362ee267cf83909efa0b5cdee689ff1f7.tar.bz2 libdbpp-postgresql-465ea24362ee267cf83909efa0b5cdee689ff1f7.tar.xz libdbpp-postgresql-465ea24362ee267cf83909efa0b5cdee689ff1f7.zip |
First commit passing IWYU
Diffstat (limited to 'libpqpp/pq-prepared.h')
-rw-r--r-- | libpqpp/pq-prepared.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpqpp/pq-prepared.h b/libpqpp/pq-prepared.h index 6d32f5f..bf88f9e 100644 --- a/libpqpp/pq-prepared.h +++ b/libpqpp/pq-prepared.h @@ -1,9 +1,12 @@ #ifndef stuff #define stuff +#include "command_fwd.h" #include "pq-command.h" +#include <string> namespace PQ { + class Connection; class PreparedStatement : public Command { protected: PreparedStatement(Connection *, const std::string &, const DB::CommandOptionsCPtr &); |