diff options
Diffstat (limited to 'src/modules/m_alias.cpp')
-rw-r--r-- | src/modules/m_alias.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index d7ac3d04a..fd3dedff2 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -24,12 +24,18 @@ using namespace std; /* $ModDesc: Provides aliases of commands. */ +/** An alias definition + */ class Alias : public classbase { public: + /** The text of the alias command */ irc::string text; + /** Text to replace with */ std::string replace_with; + /** Nickname required to perform alias */ std::string requires; + /** Alias requires ulined server */ bool uline; }; |