summaryrefslogtreecommitdiff
path: root/docs/man/man3/Event.3
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-12 23:06:51 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-12 23:06:51 +0000
commit88dd74fc84b574f17673338c6d42123570f464da (patch)
treec8d310f7e39c6f5fa69d62d8363d9e410c7d95b9 /docs/man/man3/Event.3
parent9c70fbb7c7c532baf0e02e144e93d259b13913dd (diff)
Added docs for new smaller memory footprint classes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1371 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs/man/man3/Event.3')
-rw-r--r--docs/man/man3/Event.338
1 files changed, 19 insertions, 19 deletions
diff --git a/docs/man/man3/Event.3 b/docs/man/man3/Event.3
index 1f24c87ef..94d80a8ba 100644
--- a/docs/man/man3/Event.3
+++ b/docs/man/man3/Event.3
@@ -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 344 of file modules.cpp.
+Create a new Event. Definition at line 345 of file modules.cpp.
.PP
.nf
-344 : data(anydata), source(src), id(eventid) { };
+345 : data(anydata), source(src), id(eventid) { };
.fi
.SH "Member Function Documentation"
.PP
.SS "char * Event::GetData ()"
.PP
-Get the Event data. Definition at line 346 of file modules.cpp.
+Get the Event data. Definition at line 347 of file modules.cpp.
.PP
References data.
.PP
.nf
-347 {
-348 return this->data;
-349 }
+348 {
+349 return this->data;
+350 }
.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 362 of file modules.cpp.
+Get the event ID. Use this to determine the event type for safe casting of the data Definition at line 363 of file modules.cpp.
.PP
References id.
.PP
.nf
-363 {
-364 return this->id;
-365 }
+364 {
+365 return this->id;
+366 }
.fi
.SS "\fBModule\fP * Event::GetSource ()"
.PP
-Get the event Source. Definition at line 351 of file modules.cpp.
+Get the event Source. Definition at line 352 of file modules.cpp.
.PP
References source.
.PP
.nf
-352 {
-353 return this->source;
-354 }
+353 {
+354 return this->source;
+355 }
.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 356 of file modules.cpp.
+Definition at line 357 of file modules.cpp.
.PP
References FOREACH_MOD.
.PP
.nf
-357 {
-358 FOREACH_MOD OnEvent(this);
-359 return NULL;
-360 }
+358 {
+359 FOREACH_MOD OnEvent(this);
+360 return NULL;
+361 }
.fi
.SH "Member Data Documentation"
.PP