diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/numeric.h | 17 | ||||
-rw-r--r-- | include/numerics.h | 1 |
2 files changed, 15 insertions, 3 deletions
diff --git a/include/numeric.h b/include/numeric.h index 8044fe5bf..8ea2447bf 100644 --- a/include/numeric.h +++ b/include/numeric.h @@ -88,8 +88,7 @@ class Numeric::Numeric namespace Numerics { - /** ERR_NOSUCHNICK numeric - */ + /** Builder for the ERR_NOSUCHNICK numeric. */ class NoSuchNick : public Numeric::Numeric { public: @@ -97,7 +96,19 @@ namespace Numerics : Numeric(ERR_NOSUCHNICK) { push(nick); - push("No such nick/channel"); + push("No such nick"); + } + }; + + /** Builder for the ERR_NOSUCHCHANNEL numeric. */ + class NoSuchChannel : public Numeric::Numeric + { + public: + NoSuchChannel(const std::string& chan) + : Numeric(ERR_NOSUCHCHANNEL) + { + push(chan); + push("No such channel"); } }; } diff --git a/include/numerics.h b/include/numerics.h index 8befdab2e..57ecee4df 100644 --- a/include/numerics.h +++ b/include/numerics.h @@ -161,6 +161,7 @@ enum * -- A message from the IRC group for coder sanity, and w00t */ ERR_BADCHANNELKEY = 475, + ERR_BADCHANMASK = 476, ERR_INVITEONLYCHAN = 473, ERR_CHANNELISFULL = 471, ERR_BANNEDFROMCHAN = 474, |