summaryrefslogtreecommitdiff
path: root/docs/man/man3/Event.3
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 14:52:12 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 14:52:12 +0000
commit03be04a9a2d86a4568d09d5e1689dd7ef37c863a (patch)
treed7040d4ceeaf75e849d59dd1ed077962b75fb4bf /docs/man/man3/Event.3
parent8b6b85c19528de8f0d35ab766d7559ad519869b3 (diff)
Added extra docs for new config system
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2417 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs/man/man3/Event.3')
-rw-r--r--docs/man/man3/Event.340
1 files changed, 20 insertions, 20 deletions
diff --git a/docs/man/man3/Event.3 b/docs/man/man3/Event.3
index 45e6444b8..d47289f04 100644
--- a/docs/man/man3/Event.3
+++ b/docs/man/man3/Event.3
@@ -1,4 +1,4 @@
-.TH "Event" 3 "12 Dec 2005" "Version 1.0Betareleases" "InspIRCd" \" -*- nroff -*-
+.TH "Event" 3 "14 Dec 2005" "Version 1.0Betareleases" "InspIRCd" \" -*- nroff -*-
.ad l
.nh
.SH NAME
@@ -65,10 +65,10 @@ Definition at line 197 of file modules.h.
.PP
Create a new Event.
.PP
-Definition at line 275 of file modules.cpp.
+Definition at line 202 of file modules.cpp.
.PP
.nf
-275 : data(anydata), source(src), id(eventid) { };
+202 : data(anydata), source(src), id(eventid) { };
.fi
.PP
.SH "Member Function Documentation"
@@ -77,14 +77,14 @@ Definition at line 275 of file modules.cpp.
.PP
Get the Event data.
.PP
-Definition at line 277 of file modules.cpp.
+Definition at line 204 of file modules.cpp.
.PP
References data.
.PP
.nf
-278 {
-279 return this->data;
-280 }
+205 {
+206 return this->data;
+207 }
.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 293 of file modules.cpp.
+Definition at line 220 of file modules.cpp.
.PP
References id.
.PP
.nf
-294 {
-295 return this->id;
-296 }
+221 {
+222 return this->id;
+223 }
.fi
.PP
.SS "\fBModule\fP * Event::GetSource ()"
.PP
Get the event Source.
.PP
-Definition at line 282 of file modules.cpp.
+Definition at line 209 of file modules.cpp.
.PP
References source.
.PP
.nf
-283 {
-284 return this->source;
-285 }
+210 {
+211 return this->source;
+212 }
.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 287 of file modules.cpp.
+Definition at line 214 of file modules.cpp.
.PP
References FOREACH_MOD.
.PP
.nf
-288 {
-289 FOREACH_MOD OnEvent(this);
-290 return NULL;
-291 }
+215 {
+216 FOREACH_MOD OnEvent(this);
+217 return NULL;
+218 }
.fi
.PP
.SH "Member Data Documentation"