]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/man/Version.3
Added module sockets to new engine, MAY NOT WORK
[user/henk/code/inspircd.git] / docs / man / Version.3
1 .TH "Version" 3 "30 Apr 2004" "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)"
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 .in -1c
38 .SH "Detailed Description"
39 .PP 
40 Holds a module's Version information The four members (set by the constructor only) indicate details as to the version number of a module.
41
42 A class of type Version is returned by the GetVersion method of the \fBModule\fP class. 
43 .PP
44 Definition at line 68 of file modules.h.
45 .SH "Constructor & Destructor Documentation"
46 .PP 
47 .SS "Version::Version (int major, int minor, int revision, int build)"
48 .PP
49 Definition at line 105 of file modules.cpp.
50 .PP
51 .nf
52 105 : Major(major), Minor(minor), Revision(revision), Build(build) { };
53 .fi
54 .SH "Member Data Documentation"
55 .PP 
56 .SS "const int Version::Build"
57 .PP
58 Definition at line 71 of file modules.h.
59 .SS "const int Version::Major"
60 .PP
61 Definition at line 71 of file modules.h.
62 .SS "const int Version::Minor"
63 .PP
64 Definition at line 71 of file modules.h.
65 .SS "const int Version::Revision"
66 .PP
67 Definition at line 71 of file modules.h.
68
69 .SH "Author"
70 .PP 
71 Generated automatically by Doxygen for InspIRCd from the source code.