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/channels_8h-source.html | 244 ++++++++++++++++---------------- 1 file changed, 122 insertions(+), 122 deletions(-) (limited to 'docs/module-doc/channels_8h-source.html') diff --git a/docs/module-doc/channels_8h-source.html b/docs/module-doc/channels_8h-source.html index ba7592c81..e7ec3e226 100644 --- a/docs/module-doc/channels_8h-source.html +++ b/docs/module-doc/channels_8h-source.html @@ -9,136 +9,136 @@

channels.h

Go to the documentation of this file.
00001 /*
 00002 
 00003 $Log$
-00003 Revision 1.1  2003/01/23 19:45:57  brain
-00003 Initial revision
-00003 
-00003 Revision 1.6  2003/01/22 20:59:12  brain
-00003 Added FileReader class documentation
+00003 Revision 1.2  2003/01/23 20:38:00  brain
+00003 Updated documentation scripts
 00003 
-00004 Revision 1.7  2003/01/22 00:44:26  brain
-00005 Added documentation comments
+00004 Revision 1.1.1.1  2003/01/23 19:45:58  brain
+00005 InspIRCd second source tree
 00006 
-00007 Revision 1.6  2003/01/21 21:11:17  brain
-00008 Added documentation
+00007 Revision 1.7  2003/01/22 00:44:26  brain
+00008 Added documentation comments
 00009 
-00010 Revision 1.5  2003/01/16 20:11:55  brain
-00011 fixed some ugly pointer bugs (thanks dblack and a|KK|y!)
+00010 Revision 1.6  2003/01/21 21:11:17  brain
+00011 Added documentation
 00012 
-00013 Revision 1.4  2003/01/15 22:47:44  brain
-00014 Changed user and channel structs to classes (finally)
+00013 Revision 1.5  2003/01/16 20:11:55  brain
+00014 fixed some ugly pointer bugs (thanks dblack and a|KK|y!)
 00015 
-00016    
-00017 */
-00018 
-00019 #include "inspircd_config.h"
-00020 #include <time.h>
-00021 #include <vector>
-00022 
-00023 #ifndef __CHANNELS_H__
-00024 #define __CHANNELS_H__
-00025 
-00029 class HostItem
-00030 {
-00031  public:
-00032         time_t set_time;
-00033         char set_by[NICKMAX];
-00034         char data[MAXBUF];
-00035 
-00036         HostItem() { /* stub */ }
-00037         virtual ~HostItem() { /* stub */ }
-00038 };
-00039 
-00040 // banlist is inherited from HostList mainly for readability
-00041 // reasons only
+00016 Revision 1.4  2003/01/15 22:47:44  brain
+00017 Changed user and channel structs to classes (finally)
+00018 
+00019    
+00020 */
+00021 
+00022 #include "inspircd_config.h"
+00023 #include <time.h>
+00024 #include <vector>
+00025 
+00026 #ifndef __CHANNELS_H__
+00027 #define __CHANNELS_H__
+00028 
+00032 class HostItem
+00033 {
+00034  public:
+00035         time_t set_time;
+00036         char set_by[NICKMAX];
+00037         char data[MAXBUF];
+00038 
+00039         HostItem() { /* stub */ }
+00040         virtual ~HostItem() { /* stub */ }
+00041 };
 00042 
-00045 class BanItem : public HostItem
-00046 {
-00047 };
-00048 
-00049 // same with this...
-00050 
-00053 class ExemptItem : public HostItem
-00054 {
-00055 };
-00056 
-00057 // and this...
-00058 
-00061 class InviteItem : public HostItem
-00062 {
-00063 };
-00064 
-00065 
-00068 typedef vector<BanItem>         BanList;
-00069 
-00072 typedef vector<ExemptItem>      ExemptList;
-00073 
-00076 typedef vector<InviteItem>      InviteList;
-00077 
-00082 class chanrec
-00083 {
-00084  public:
-00087         char name[CHANMAX]; /* channel name */
-00091         char custom_modes[MAXMODES];     /* modes handled by modules */
-00095         char topic[MAXBUF];
-00098         time_t created;
-00102         time_t topicset;
-00106         char setby[NICKMAX];
-00107 
-00111         long limit;
-00112         
-00116         char key[32];
-00117         
-00120         short int topiclock;
-00121         
-00124         short int noexternal;
-00125         
-00128         short int inviteonly;
-00129         
-00132         short int moderated;
-00133         
-00137         short int secret;
-00138         
-00142         short int c_private;
-00143         
-00146         BanList bans;
-00147 
-00150         chanrec()
-00151         {
-00152                 strcpy(name,"");
-00153                 strcpy(custom_modes,"");
-00154                 strcpy(topic,"");
-00155                 strcpy(setby,"");
-00156                 strcpy(key,"");
-00157                 created = topicset = limit = 0;
-00158                 topiclock = noexternal = inviteonly = moderated = secret = c_private = false;
-00159         }
-00160 
-00161         virtual ~chanrec() { /* stub */ }
-00162 };
+00043 // banlist is inherited from HostList mainly for readability
+00044 // reasons only
+00045 
+00048 class BanItem : public HostItem
+00049 {
+00050 };
+00051 
+00052 // same with this...
+00053 
+00056 class ExemptItem : public HostItem
+00057 {
+00058 };
+00059 
+00060 // and this...
+00061 
+00064 class InviteItem : public HostItem
+00065 {
+00066 };
+00067 
+00068 
+00071 typedef vector<BanItem>         BanList;
+00072 
+00075 typedef vector<ExemptItem>      ExemptList;
+00076 
+00079 typedef vector<InviteItem>      InviteList;
+00080 
+00085 class chanrec
+00086 {
+00087  public:
+00090         char name[CHANMAX]; /* channel name */
+00094         char custom_modes[MAXMODES];     /* modes handled by modules */
+00098         char topic[MAXBUF];
+00101         time_t created;
+00105         time_t topicset;
+00109         char setby[NICKMAX];
+00110 
+00114         long limit;
+00115         
+00119         char key[32];
+00120         
+00123         short int topiclock;
+00124         
+00127         short int noexternal;
+00128         
+00131         short int inviteonly;
+00132         
+00135         short int moderated;
+00136         
+00140         short int secret;
+00141         
+00145         short int c_private;
+00146         
+00149         BanList bans;
+00150 
+00153         chanrec()
+00154         {
+00155                 strcpy(name,"");
+00156                 strcpy(custom_modes,"");
+00157                 strcpy(topic,"");
+00158                 strcpy(setby,"");
+00159                 strcpy(key,"");
+00160                 created = topicset = limit = 0;
+00161                 topiclock = noexternal = inviteonly = moderated = secret = c_private = false;
+00162         }
 00163 
-00164 /* used to hold a channel and a users modes on that channel, e.g. +v, +h, +o
-00165  * needs to come AFTER struct chanrec */
+00164         virtual ~chanrec() { /* stub */ }
+00165 };
 00166 
-00167 #define UCMODE_OP      1
-00168 #define UCMODE_VOICE   2
-00169 #define UCMODE_HOP     4
-00170 #define UCMODE_PROTECT 8
-00171 #define UCMODE_FOUNDER 16
-00172  
-00178 class ucrec
-00179 {
-00180  public:
-00184         long uc_modes;
-00185         
-00189         chanrec *channel;
-00190 
-00191         ucrec() { /* stub */ }
-00192         virtual ~ucrec() { /* stub */ }
-00193 };
-00194 
-00195 #endif
-00196 
-

Generated on Wed Jan 22 20:56:46 2003 for InspIRCd by +00167 /* used to hold a channel and a users modes on that channel, e.g. +v, +h, +o +00168 * needs to come AFTER struct chanrec */ +00169 +00170 #define UCMODE_OP 1 +00171 #define UCMODE_VOICE 2 +00172 #define UCMODE_HOP 4 +00173 #define UCMODE_PROTECT 8 +00174 #define UCMODE_FOUNDER 16 +00175 +00181 class ucrec +00182 { +00183 public: +00187 long uc_modes; +00188 +00192 chanrec *channel; +00193 +00194 ucrec() { /* stub */ } +00195 virtual ~ucrec() { /* stub */ } +00196 }; +00197 +00198 #endif +00199 +
Generated on Thu Jan 23 20:28:57 2003 for InspIRCd by doxygen1.3-rc2
-- cgit v1.2.3