summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-selectcommand.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-11-18 16:55:31 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2020-11-18 16:55:31 +0000
commit0af57e2595922c9ee59d7cd489daf37a3550496c (patch)
tree73f8069e421e64222380fb3d30b2fb1277f80cd3 /libsqlitepp/sqlite-selectcommand.h
parentFixes for tidy (diff)
downloadlibdbpp-sqlite-0af57e2595922c9ee59d7cd489daf37a3550496c.tar.bz2
libdbpp-sqlite-0af57e2595922c9ee59d7cd489daf37a3550496c.tar.xz
libdbpp-sqlite-0af57e2595922c9ee59d7cd489daf37a3550496c.zip
Clang format
Diffstat (limited to 'libsqlitepp/sqlite-selectcommand.h')
-rw-r--r--libsqlitepp/sqlite-selectcommand.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/libsqlitepp/sqlite-selectcommand.h b/libsqlitepp/sqlite-selectcommand.h
index 8c9b04d..30e0118 100644
--- a/libsqlitepp/sqlite-selectcommand.h
+++ b/libsqlitepp/sqlite-selectcommand.h
@@ -1,21 +1,19 @@
#ifndef SQLITE_SELECTCOMMAND_H
#define SQLITE_SELECTCOMMAND_H
-#include <selectcommand.h>
#include "sqlite-command.h"
+#include <selectcommand.h>
namespace SQLite {
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;
};
}
#endif
-
-