diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-11-18 16:55:18 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-11-18 16:55:18 +0000 |
commit | 3bfa3dafe335479aade55507719071f7dceb0d8c (patch) | |
tree | 31d14618fc170a16f91f1f5c79e2ffd25f11b541 /libpqpp/pq-selectbase.h | |
parent | Fixes for tidy (diff) | |
download | libdbpp-postgresql-3bfa3dafe335479aade55507719071f7dceb0d8c.tar.bz2 libdbpp-postgresql-3bfa3dafe335479aade55507719071f7dceb0d8c.tar.xz libdbpp-postgresql-3bfa3dafe335479aade55507719071f7dceb0d8c.zip |
Clang format
Diffstat (limited to 'libpqpp/pq-selectbase.h')
-rw-r--r-- | libpqpp/pq-selectbase.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/libpqpp/pq-selectbase.h b/libpqpp/pq-selectbase.h index bda6348..87dcc9d 100644 --- a/libpqpp/pq-selectbase.h +++ b/libpqpp/pq-selectbase.h @@ -1,25 +1,24 @@ #ifndef PQ_SELECTBASE_H #define PQ_SELECTBASE_H +#include "pq-command.h" #include <libpq-fe.h> #include <selectcommand.h> -#include "pq-command.h" namespace PQ { class SelectBase : public DB::SelectCommand { friend class Column; - protected: - SelectBase(const std::string & sql, const PQ::CommandOptionsCPtr & pqco); - ~SelectBase(); + protected: + SelectBase(const std::string & sql, const PQ::CommandOptionsCPtr & pqco); + ~SelectBase(); - void createColumns(PGresult *); + void createColumns(PGresult *); - unsigned int nTuples, tuple; - PGresult * execRes; - bool binary; + unsigned int nTuples, tuple; + PGresult * execRes; + bool binary; }; } #endif - |