diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-14 19:17:41 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-14 19:17:41 +0000 |
commit | a96514c284514116300794696f062c7fa6b1f79f (patch) | |
tree | b7b26583dcf354313f74613e604bd9c5dbb52acb /docs/man/man3/Event.3 | |
parent | c4a345fe9903643a716ebf4c1df35fe28036bf4d (diff) |
Added new docs for class InspIRCd and globals.h etc
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2451 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs/man/man3/Event.3')
-rw-r--r-- | docs/man/man3/Event.3 | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/docs/man/man3/Event.3 b/docs/man/man3/Event.3 index d47289f04..36017ae32 100644 --- a/docs/man/man3/Event.3 +++ b/docs/man/man3/Event.3 @@ -65,10 +65,10 @@ Definition at line 197 of file modules.h. .PP Create a new Event. .PP -Definition at line 202 of file modules.cpp. +Definition at line 194 of file modules.cpp. .PP .nf -202 : data(anydata), source(src), id(eventid) { }; +194 : data(anydata), source(src), id(eventid) { }; .fi .PP .SH "Member Function Documentation" @@ -77,14 +77,14 @@ Definition at line 202 of file modules.cpp. .PP Get the Event data. .PP -Definition at line 204 of file modules.cpp. +Definition at line 196 of file modules.cpp. .PP References data. .PP .nf -205 { -206 return this->data; -207 } +197 { +198 return this->data; +199 } .fi .PP .SS "\fBstd::string\fP Event::GetEventID ()" @@ -93,28 +93,28 @@ Get the event ID. .PP Use this to determine the event type for safe casting of the data .PP -Definition at line 220 of file modules.cpp. +Definition at line 212 of file modules.cpp. .PP References id. .PP .nf -221 { -222 return this->id; -223 } +213 { +214 return this->id; +215 } .fi .PP .SS "\fBModule\fP * Event::GetSource ()" .PP Get the event Source. .PP -Definition at line 209 of file modules.cpp. +Definition at line 201 of file modules.cpp. .PP References source. .PP .nf -210 { -211 return this->source; -212 } +202 { +203 return this->source; +204 } .fi .PP .SS "char * Event::Send ()\fC [virtual]\fP" @@ -125,15 +125,15 @@ The return result of an \fBEvent::Send()\fP will always be NULL as no replies ar .PP Implements \fBModuleMessage\fP. .PP -Definition at line 214 of file modules.cpp. +Definition at line 206 of file modules.cpp. .PP References FOREACH_MOD. .PP .nf -215 { -216 FOREACH_MOD OnEvent(this); -217 return NULL; -218 } +207 { +208 FOREACH_MOD OnEvent(this); +209 return NULL; +210 } .fi .PP .SH "Member Data Documentation" |