summaryrefslogtreecommitdiff
path: root/src/commands.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-02-27 11:50:30 +0000
committerSadie Powell <sadie@witchery.services>2020-03-05 20:47:18 +0000
commit600ea3b38fde78c8105f94c39772dea8043f0573 (patch)
tree7ab491cf35214a246cbfabaa94d38594d1bea212 /src/commands.cpp
parent1899ce4e2151dd1ea5741df106ba1e71c63eb0b2 (diff)
Clean up the documentation of the Command and SplitCommand classes.
Diffstat (limited to 'src/commands.cpp')
-rw-r--r--src/commands.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index d4f380272..9215a4db5 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -24,6 +24,11 @@
#include "inspircd.h"
+SplitCommand::SplitCommand(Module* me, const std::string& cmd, unsigned int minpara, unsigned int maxpara)
+ : Command(me, cmd, minpara, maxpara)
+{
+}
+
CmdResult SplitCommand::Handle(User* user, const Params& parameters)
{
switch (user->usertype)