From cc61d20faae9a29422d34a367db9ac54d8de3d0e Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 23 Jan 2003 20:38:00 +0000 Subject: Updated documentation scripts git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@143 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/classModule.html | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'docs/module-doc/classModule.html') diff --git a/docs/module-doc/classModule.html b/docs/module-doc/classModule.html index 519fbeb27..77f703241 100644 --- a/docs/module-doc/classModule.html +++ b/docs/module-doc/classModule.html @@ -36,7 +36,7 @@ All modules must inherit from this class, its methods will be called when irc se
-Definition at line 79 of file modules.h.
-Definition at line 41 of file modules.cpp. +Definition at line 44 of file modules.cpp.
-
00041 { }
+00044 { }
@@ -137,9 +137,9 @@ Returns the version number of a Module.
The method should return a Version object with its version information assigned via Version::Version
-Definition at line 46 of file modules.cpp.
+Definition at line 49 of file modules.cpp.
-
00046 { return Version(1,0,0,0); }
+00049 { return Version(1,0,0,0); }
@@ -173,9 +173,9 @@ Called when a user connects.
The details of the connecting user are available to you in the parameter userrec *user
-Definition at line 42 of file modules.cpp.
+Definition at line 45 of file modules.cpp.
-
00042 { }
+00045 { }
@@ -218,9 +218,9 @@ Called when a user joins a channel.
The details of the joining user are available to you in the parameter userrec *user, and the details of the channel they have joined is available in the variable chanrec *channel
-Definition at line 44 of file modules.cpp.
+Definition at line 47 of file modules.cpp.
-
00044 { }
+00047 { }
@@ -263,9 +263,9 @@ Called when a user parts a channel.
The details of the leaving user are available to you in the parameter userrec *user, and the details of the channel they have left is available in the variable chanrec *channel
-Definition at line 45 of file modules.cpp.
+Definition at line 48 of file modules.cpp.
-
00045 { }
+00048 { }
@@ -299,15 +299,15 @@ Called when a user quits.
The details of the exiting user are available to you in the parameter userrec *user
-Definition at line 43 of file modules.cpp.
+Definition at line 46 of file modules.cpp.
-