diff options
author | Attila Molnar <attilamolnar@hush.com> | 2012-07-05 13:03:48 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2012-07-05 13:03:48 -0700 |
commit | def08e968b2ed922d7ee69d92d6754f858d00f57 (patch) | |
tree | 5125fa4a8bc4d2901da96ddec8577f21d67f0f32 /include/ctables.h | |
parent | 2cb47dd7920355b11edd664f7399ca69e0d5d0b4 (diff) | |
parent | 808a0a09577009c2d6e494979c2189426b332aef (diff) |
Merge pull request #242 from SaberUK/insp20-doxygen-fix
[2.0] Doxygen fixes
Diffstat (limited to 'include/ctables.h')
-rw-r--r-- | include/ctables.h | 10 |
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), |