]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/man/man3/Version.3
Changed parameters of OnPacketTransmit and OnPacketReceive to be much more useful
[user/henk/code/inspircd.git] / docs / man / man3 / Version.3
1 .TH "Version" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
2 .ad l
3 .nh
4 .SH NAME
5 Version \- Holds a module's Version information The four members (set by the constructor only) indicate details as to the version number of a module.  
6
7 .PP
8 .SH SYNOPSIS
9 .br
10 .PP
11 \fC#include <modules.h>\fP
12 .PP
13 Inherits \fBclassbase\fP.
14 .PP
15 .SS "Public Member Functions"
16
17 .in +1c
18 .ti -1c
19 .RI "\fBVersion\fP (int major, int minor, int revision, int build, int flags)"
20 .br
21 .in -1c
22 .SS "Public Attributes"
23
24 .in +1c
25 .ti -1c
26 .RI "const int \fBMajor\fP"
27 .br
28 .ti -1c
29 .RI "const int \fBMinor\fP"
30 .br
31 .ti -1c
32 .RI "const int \fBRevision\fP"
33 .br
34 .ti -1c
35 .RI "const int \fBBuild\fP"
36 .br
37 .ti -1c
38 .RI "const int \fBFlags\fP"
39 .br
40 .in -1c
41 .SH "Detailed Description"
42 .PP 
43 Holds a module's Version information The four members (set by the constructor only) indicate details as to the version number of a module. 
44
45 A class of type Version is returned by the GetVersion method of the \fBModule\fP class. 
46 .PP
47 Definition at line 109 of file modules.h.
48 .SH "Constructor & Destructor Documentation"
49 .PP 
50 .SS "Version::Version (int major, int minor, int revision, int build, int flags)"
51 .PP
52 Definition at line 300 of file modules.cpp.
53 .PP
54 .nf
55 300 : Major(major), Minor(minor), Revision(revision), Build(build), Flags(flags) { };
56 .fi
57 .SH "Member Data Documentation"
58 .PP 
59 .SS "const int \fBVersion::Build\fP"
60 .PP
61 Definition at line 112 of file modules.h.
62 .SS "const int \fBVersion::Flags\fP"
63 .PP
64 Definition at line 112 of file modules.h.
65 .SS "const int \fBVersion::Major\fP"
66 .PP
67 Definition at line 112 of file modules.h.
68 .SS "const int \fBVersion::Minor\fP"
69 .PP
70 Definition at line 112 of file modules.h.
71 .SS "const int \fBVersion::Revision\fP"
72 .PP
73 Definition at line 112 of file modules.h.
74
75 .SH "Author"
76 .PP 
77 Generated automatically by Doxygen for InspIRCd from the source code.