summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-selectcommand.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-09-21 17:59:41 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-09-21 17:59:41 +0100
commitf036fb38fb75c1298f6729ffc2f7d411b5478854 (patch)
tree12a6345905cceb9f50e189cdf7d2993edd0f14de /libsqlitepp/sqlite-selectcommand.cpp
parentPass cppcheck and clang-tidy (diff)
downloadlibdbpp-sqlite-f036fb38fb75c1298f6729ffc2f7d411b5478854.tar.bz2
libdbpp-sqlite-f036fb38fb75c1298f6729ffc2f7d411b5478854.tar.xz
libdbpp-sqlite-f036fb38fb75c1298f6729ffc2f7d411b5478854.zip
First commit passing IWYU
Diffstat (limited to 'libsqlitepp/sqlite-selectcommand.cpp')
-rw-r--r--libsqlitepp/sqlite-selectcommand.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/libsqlitepp/sqlite-selectcommand.cpp b/libsqlitepp/sqlite-selectcommand.cpp
index e360dcd..dcb1944 100644
--- a/libsqlitepp/sqlite-selectcommand.cpp
+++ b/libsqlitepp/sqlite-selectcommand.cpp
@@ -1,9 +1,15 @@
#include "sqlite-selectcommand.h"
+#include "column.h"
+#include "command.h"
+#include "error.h"
+#include "selectcommand.h"
+#include "sqlite-command.h"
#include "sqlite-connection.h"
#include "sqlite-error.h"
-#include <boost/multi_index/ordered_index.hpp>
-#include <boost/multi_index_container.hpp>
#include <cstring>
+#include <glibmm/ustring.h>
+#include <memory>
+#include <sqlite3.h>
namespace SQLite {
class Column : public DB::Column {