summaryrefslogtreecommitdiff
path: root/src/commands/request_util.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/request_util.hpp')
-rw-r--r--src/commands/request_util.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/commands/request_util.hpp b/src/commands/request_util.hpp
index df61ba5..3d9831d 100644
--- a/src/commands/request_util.hpp
+++ b/src/commands/request_util.hpp
@@ -1,4 +1,5 @@
#include <optional>
+#include <pqxx/pqxx>
#include "../irc/message.hpp"
#include "command.hpp"
@@ -7,5 +8,6 @@
namespace bot::command {
std::optional<Request> generate_request(
const command::CommandLoader &command_loader,
- const irc::Message<irc::MessageType::Privmsg> &irc_message);
+ const irc::Message<irc::MessageType::Privmsg> &irc_message,
+ const pqxx::work &work);
}