summaryrefslogtreecommitdiff
path: root/docs/man/man3/Event.3
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-15 17:05:15 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-15 17:05:15 +0000
commit4d5a17380bc71cabe544b41c7c8a26a292384f3d (patch)
tree9a882bc421d4c250817a17980265b76e06e4cf8c /docs/man/man3/Event.3
parenta48ee868ed80b689b773fdd9bbd8f1e761dc3b8a (diff)
Added docs for hashcomp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1396 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 dabb4c1d4..249e9bcba 100644
--- a/docs/man/man3/Event.3
+++ b/docs/man/man3/Event.3
@@ -1,4 +1,4 @@
-.TH "Event" 3 "13 May 2005" "InspIRCd" \" -*- nroff -*-
+.TH "Event" 3 "15 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 345 of file modules.cpp.
+Create a new Event. Definition at line 269 of file modules.cpp.
.PP
.nf
-345 : data(anydata), source(src), id(eventid) { };
+269 : data(anydata), source(src), id(eventid) { };
.fi
.SH "Member Function Documentation"
.PP
.SS "char * Event::GetData ()"
.PP
-Get the Event data. Definition at line 347 of file modules.cpp.
+Get the Event data. Definition at line 271 of file modules.cpp.
.PP
References data.
.PP
.nf
-348 {
-349 return this->data;
-350 }
+272 {
+273 return this->data;
+274 }
.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 363 of file modules.cpp.
+Get the event ID. Use this to determine the event type for safe casting of the data Definition at line 287 of file modules.cpp.
.PP
References id.
.PP
.nf
-364 {
-365 return this->id;
-366 }
+288 {
+289 return this->id;
+290 }
.fi
.SS "\fBModule\fP * Event::GetSource ()"
.PP
-Get the event Source. Definition at line 352 of file modules.cpp.
+Get the event Source. Definition at line 276 of file modules.cpp.
.PP
References source.
.PP
.nf
-353 {
-354 return this->source;
-355 }
+277 {
+278 return this->source;
+279 }
.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 357 of file modules.cpp.
+Definition at line 281 of file modules.cpp.
.PP
References FOREACH_MOD.
.PP
.nf
-358 {
-359 FOREACH_MOD OnEvent(this);
-360 return NULL;
-361 }
+282 {
+283 FOREACH_MOD OnEvent(this);
+284 return NULL;
+285 }
.fi
.SH "Member Data Documentation"
.PP