From a8630518c10667ff88f0e0846de98337743a5808 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 21 Sep 2021 17:59:41 +0100 Subject: First commit passing IWYU --- libmysqlpp/my-command.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'libmysqlpp/my-command.cpp') diff --git a/libmysqlpp/my-command.cpp b/libmysqlpp/my-command.cpp index 114e526..ac3f235 100644 --- a/libmysqlpp/my-command.cpp +++ b/libmysqlpp/my-command.cpp @@ -1,8 +1,25 @@ #include "my-command.h" +#include "command.h" #include "my-connection.h" +#include "my-error.h" +#include +#include +#include +#include #include #include #include +#include +#include +#include +#include + +namespace Glib { + class ustring; +} +namespace boost::posix_time { + class time_duration; +} MySQL::Command::Command(const Connection * conn, const std::string & sql) : DB::Command(sql), c(conn), stmt(mysql_stmt_init(&conn->conn), &mysql_stmt_close), paramsNeedBinding(false) -- cgit v1.2.3