diff options
author | David Athay <ko2fan@gmail.com> | 2008-07-07 12:53:24 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2008-07-07 12:53:24 +0000 |
commit | 183bc340bd3e062a4c6df4d66cc2843582bcec94 (patch) | |
tree | dccee4776fe8b54bd93c84b89075541d1a0cbc48 /src/commandhandler.h | |
parent | 1762fcad22bca9b74900e5a5190ba9f1f863a71a (diff) | |
download | mana-183bc340bd3e062a4c6df4d66cc2843582bcec94.tar.gz mana-183bc340bd3e062a4c6df4d66cc2843582bcec94.tar.bz2 mana-183bc340bd3e062a4c6df4d66cc2843582bcec94.tar.xz mana-183bc340bd3e062a4c6df4d66cc2843582bcec94.zip |
Added help for each command based on mantis bug #359, thanks to Scraggy
Diffstat (limited to 'src/commandhandler.h')
-rw-r--r-- | src/commandhandler.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/commandhandler.h b/src/commandhandler.h index c415ba4f..ef6da33d 100644 --- a/src/commandhandler.h +++ b/src/commandhandler.h @@ -20,7 +20,7 @@ * * $Id$ */ - + #ifndef _TMW_COMMANDHANDLER_H #define _TMW_COMMANDHANDLER_H @@ -36,63 +36,63 @@ class CommandHandler * Constructor */ CommandHandler() {} - + /** * Destructor */ ~CommandHandler() {} - + /** * Parse and handle the given command. */ void handleCommand(const std::string &command); - + private: /** * Handle an announce command. */ void handleAnnounce(const std::string &args); - + /** * Handle a help command. */ - void handleHelp(); - + void handleHelp(const std::string &args); + /** * Handle a where command. */ void handleWhere(); - + /** * Handle a who command. */ void handleWho(); - + /** * Handle a msg command. */ void handleMsg(const std::string &args); - + /** * Handle a channel command. */ void handleChannel(const std::string &args); - + /** * Handle a join command. */ void handleJoin(const std::string &args); - + /** * Handle a listchannels command. */ void handleListChannels(); - + /** * Handle a listusers command. */ void handleListUsers(); - + /** * Handle a topic command. */ @@ -102,7 +102,7 @@ class CommandHandler * Handle a quit command. */ void handleQuit(); - + /** * Handle a clear command. */ |