summaryrefslogtreecommitdiff
path: root/docs/man/man3/Event.3
diff options
context:
space:
mode:
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 d546cadcc..96754f611 100644
--- a/docs/man/man3/Event.3
+++ b/docs/man/man3/Event.3
@@ -1,4 +1,4 @@
-.TH "Event" 3 "25 May 2005" "InspIRCd" \" -*- nroff -*-
+.TH "Event" 3 "30 May 2005" "InspIRCd" \" -*- nroff -*-
.ad l
.nh
.SH NAME
@@ -63,59 +63,59 @@ Definition at line 194 of file modules.h.
.PP
.SS "Event::Event (char * anydata, \fBModule\fP * src, std::string eventid)"
.PP
-Create a new Event. Definition at line 278 of file modules.cpp.
+Create a new Event. Definition at line 280 of file modules.cpp.
.PP
.nf
-278 : data(anydata), source(src), id(eventid) { };
+280 : data(anydata), source(src), id(eventid) { };
.fi
.SH "Member Function Documentation"
.PP
.SS "char * Event::GetData ()"
.PP
-Get the Event data. Definition at line 280 of file modules.cpp.
+Get the Event data. Definition at line 282 of file modules.cpp.
.PP
References data.
.PP
.nf
-281 {
-282 return this->data;
-283 }
+283 {
+284 return this->data;
+285 }
.fi
.SS "std::string Event::GetEventID ()"
.PP
-Get the event ID. Use this to determine the event type for safe casting of the data Definition at line 296 of file modules.cpp.
+Get the event ID. Use this to determine the event type for safe casting of the data Definition at line 298 of file modules.cpp.
.PP
References id.
.PP
.nf
-297 {
-298 return this->id;
-299 }
+299 {
+300 return this->id;
+301 }
.fi
.SS "\fBModule\fP * Event::GetSource ()"
.PP
-Get the event Source. Definition at line 285 of file modules.cpp.
+Get the event Source. Definition at line 287 of file modules.cpp.
.PP
References source.
.PP
.nf
-286 {
-287 return this->source;
-288 }
+288 {
+289 return this->source;
+290 }
.fi
.SS "char * Event::Send ()\fC [virtual]\fP"
.PP
Send the Event. The return result of an \fBEvent::Send()\fP will always be NULL as no replies are expected. Implements \fBModuleMessage\fP.
.PP
-Definition at line 290 of file modules.cpp.
+Definition at line 292 of file modules.cpp.
.PP
References FOREACH_MOD.
.PP
.nf
-291 {
-292 FOREACH_MOD OnEvent(this);
-293 return NULL;
-294 }
+293 {
+294 FOREACH_MOD OnEvent(this);
+295 return NULL;
+296 }
.fi
.SH "Member Data Documentation"
.PP