diff options
Diffstat (limited to 'libpqpp/pq-prepared.h')
-rw-r--r-- | libpqpp/pq-prepared.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libpqpp/pq-prepared.h b/libpqpp/pq-prepared.h index 0f745c9..d70a388 100644 --- a/libpqpp/pq-prepared.h +++ b/libpqpp/pq-prepared.h @@ -2,16 +2,14 @@ #define stuff #include "pq-command.h" -#include "pq-connection.h" namespace PQ { class PreparedStatement : public Command { protected: - PreparedStatement(Connection *, const std::string &, unsigned int, const DB::CommandOptions *); + PreparedStatement(Connection *, const std::string &, const DB::CommandOptions *); virtual ~PreparedStatement() = default; const char * prepare() const; - Connection::StatementHash hash; mutable const char * pstmt; }; } |