]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - docs/man/man3/Event.3
Re-added the dot graphs again
[user/henk/code/inspircd.git] / docs / man / man3 / Event.3
index 0c5e83e4040de9b17b96315bce1173c15cb0955b..dabb4c1d4845119f369bddd1fe9e73b51f1b97c6 100644 (file)
@@ -1,4 +1,4 @@
-.TH "Event" 3 "7 May 2005" "InspIRCd" \" -*- nroff -*-
+.TH "Event" 3 "13 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 335 of file modules.cpp.
+Create a new Event. Definition at line 345 of file modules.cpp.
 .PP
 .nf
-335 : 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 337 of file modules.cpp.
+Get the Event data. Definition at line 347 of file modules.cpp.
 .PP
 References data.
 .PP
 .nf
-338 {
-339         return this->data;
-340 }
+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 353 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
-354 {
-355         return this->id;
-356 }
+364 {
+365         return this->id;
+366 }
 .fi
 .SS "\fBModule\fP * Event::GetSource ()"
 .PP
-Get the event Source. Definition at line 342 of file modules.cpp.
+Get the event Source. Definition at line 352 of file modules.cpp.
 .PP
 References source.
 .PP
 .nf
-343 {
-344         return this->source;
-345 }
+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 347 of file modules.cpp.
+Definition at line 357 of file modules.cpp.
 .PP
 References FOREACH_MOD.
 .PP
 .nf
-348 {
-349         FOREACH_MOD OnEvent(this);
-350         return NULL;
-351 }
+358 {
+359         FOREACH_MOD OnEvent(this);
+360         return NULL;
+361 }
 .fi
 .SH "Member Data Documentation"
 .PP