]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_alias.cpp
Annotations
[user/henk/code/inspircd.git] / src / modules / m_alias.cpp
index 5eb7c9908400c917e3d313023eec244be29e1805..fd3dedff2dec5169a79cdde94a2551a771a6cc33 100644 (file)
@@ -19,21 +19,23 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
-#include "commands.h"
 #include "inspircd.h"
 #include <vector>
 
 /* $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;
 };