summaryrefslogtreecommitdiff
path: root/libmysqlpp/my-selectcommand.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-11-18 16:54:48 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2020-11-18 16:54:48 +0000
commitd77f801dc01c5e30c0d96e907c8ac14f23d7b630 (patch)
tree29756c92cb200c1ddcb422723cd5e676d5c97074 /libmysqlpp/my-selectcommand.h
parentFixes for tidy (diff)
downloadlibdbpp-mysql-d77f801dc01c5e30c0d96e907c8ac14f23d7b630.tar.bz2
libdbpp-mysql-d77f801dc01c5e30c0d96e907c8ac14f23d7b630.tar.xz
libdbpp-mysql-d77f801dc01c5e30c0d96e907c8ac14f23d7b630.zip
Clang format
Diffstat (limited to 'libmysqlpp/my-selectcommand.h')
-rw-r--r--libmysqlpp/my-selectcommand.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/libmysqlpp/my-selectcommand.h b/libmysqlpp/my-selectcommand.h
index b9a0edc..9613731 100644
--- a/libmysqlpp/my-selectcommand.h
+++ b/libmysqlpp/my-selectcommand.h
@@ -1,26 +1,24 @@
#ifndef MY_SELECTCOMMAND_H
#define MY_SELECTCOMMAND_H
-#include <selectcommand.h>
#include "my-command.h"
+#include <selectcommand.h>
namespace MySQL {
class Connection;
class ColumnBase;
class SelectCommand : public DB::SelectCommand, public Command {
- public:
- SelectCommand(const Connection *, const std::string & sql);
+ public:
+ SelectCommand(const Connection *, const std::string & sql);
- bool fetch() override;
- void execute() override;
+ bool fetch() override;
+ void execute() override;
- private:
- bool prepared;
- bool executed;
- Binds fields;
+ private:
+ bool prepared;
+ bool executed;
+ Binds fields;
};
}
#endif
-
-