summaryrefslogtreecommitdiff
path: root/include/ctables.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2012-07-05 21:00:35 +0100
committerPeter Powell <petpow@saberuk.com>2012-07-05 21:00:35 +0100
commit808a0a09577009c2d6e494979c2189426b332aef (patch)
tree94e1b6db3b0b45d8cbd6e0f1a51573a564ebbd17 /include/ctables.h
parent34058529b9c0e9024921db0ccffbbe3c307ec6a1 (diff)
Fix Doxygen syntax errors.
Diffstat (limited to 'include/ctables.h')
-rw-r--r--include/ctables.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/include/ctables.h b/include/ctables.h
index 0bd8f360c..f016dd4c5 100644
--- a/include/ctables.h
+++ b/include/ctables.h
@@ -147,15 +147,11 @@ class CoreExport Command : public ServiceProvider
int Penalty;
/** Create a new command.
- * @param Instance Pointer to creator class
+ * @param me The module which created this command.
* @param cmd Command name. This must be UPPER CASE.
- * @param flags User mode required to execute the command. May ONLY be one mode - it's a string to give warnings if people mix params up.
- * For oper only commands, set this to 'o', otherwise use 0.
* @param minpara Minimum parameters required for the command.
- * @param maxpara Maximum number of parameters this command may have - extra parameters will be tossed into one last space-seperated param.
- * @param before_reg If this is set to true, the command will
- * be allowed before the user is 'registered' (has sent USER,
- * NICK, optionally PASS, and been resolved).
+ * @param maxpara Maximum number of parameters this command may have - extra parameters
+ * will be tossed into one last space-seperated param.
*/
Command(Module* me, const std::string &cmd, int minpara = 0, int maxpara = 0) :
ServiceProvider(me, cmd, SERVICE_COMMAND), flags_needed(0), min_params(minpara), max_params(maxpara),