summaryrefslogtreecommitdiff
path: root/src/irc/irc_message.hpp
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2015-12-03 21:14:24 +0100
committerFlorent Le Coz <louiz@louiz.org>2015-12-03 21:15:22 +0100
commit1f6eea62f46789c0d3ebe7da133ccad2e59c89c8 (patch)
treed84086c52ea913fea84aa33d2ef0f6284c24d8e7 /src/irc/irc_message.hpp
parent700a6c7bc39aa48af5037ecbb9778b20fb6f87df (diff)
downloadbiboumi-1f6eea62f46789c0d3ebe7da133ccad2e59c89c8.tar.gz
biboumi-1f6eea62f46789c0d3ebe7da133ccad2e59c89c8.tar.bz2
biboumi-1f6eea62f46789c0d3ebe7da133ccad2e59c89c8.tar.xz
biboumi-1f6eea62f46789c0d3ebe7da133ccad2e59c89c8.zip
Add an ad-hoc command to disconnect a user from one or more IRC server
fix #3077
Diffstat (limited to 'src/irc/irc_message.hpp')
-rw-r--r--src/irc/irc_message.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/irc/irc_message.hpp b/src/irc/irc_message.hpp
index a0bd772..01e78cf 100644
--- a/src/irc/irc_message.hpp
+++ b/src/irc/irc_message.hpp
@@ -8,9 +8,9 @@
class IrcMessage
{
public:
- explicit IrcMessage(std::string&& line);
- explicit IrcMessage(std::string&& prefix, std::string&& command, std::vector<std::string>&& args);
- explicit IrcMessage(std::string&& command, std::vector<std::string>&& args);
+ IrcMessage(std::string&& line);
+ IrcMessage(std::string&& prefix, std::string&& command, std::vector<std::string>&& args);
+ IrcMessage(std::string&& command, std::vector<std::string>&& args);
~IrcMessage();
std::string prefix;