]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/module-doc/classVersion.html
Added final documentation for inspircd Beta 4
[user/henk/code/inspircd.git] / docs / module-doc / classVersion.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3 <title>InspIRCd: Version class Reference</title>
4 <link href="inspircd.css" rel="stylesheet" type="text/css">
5 </head><body>
6 <!-- Generated by Doxygen 1.3.3 -->
7 <div class="qindex"><a class="qindex" href="main.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Compound&nbsp;List</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Compound&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
8 <h1>Version Class Reference</h1>Holds a module's Version information The four members (set by the constructor only) indicate details as to the version number of a module.  
9 <a href="#_details">More...</a>
10 <p>
11 <code>#include &lt;<a class="el" href="modules_8h-source.html">modules.h</a>&gt;</code>
12 <p>
13 Inherits <a class="el" href="classclassbase.html">classbase</a>.
14 <p>
15 <a href="classVersion-members.html">List of all members.</a><table border=0 cellpadding=0 cellspacing=0>
16 <tr><td></td></tr>
17 <tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
18 <tr><td class="memItemLeft" nowrap align=right valign=top>&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classVersion.html#a0">Version</a> (int major, int minor, int revision, int build, int flags)</td></tr>
19
20 <tr><td colspan=2><br><h2>Public Attributes</h2></td></tr>
21 <tr><td class="memItemLeft" nowrap align=right valign=top>const int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classVersion.html#o0">Major</a></td></tr>
22
23 <tr><td class="memItemLeft" nowrap align=right valign=top>const int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classVersion.html#o1">Minor</a></td></tr>
24
25 <tr><td class="memItemLeft" nowrap align=right valign=top>const int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classVersion.html#o2">Revision</a></td></tr>
26
27 <tr><td class="memItemLeft" nowrap align=right valign=top>const int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classVersion.html#o3">Build</a></td></tr>
28
29 <tr><td class="memItemLeft" nowrap align=right valign=top>const int&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="classVersion.html#o4">Flags</a></td></tr>
30
31 </table>
32 <hr><a name="_details"></a><h2>Detailed Description</h2>
33 Holds a module's Version information The four members (set by the constructor only) indicate details as to the version number of a module. 
34 <p>
35 A class of type Version is returned by the GetVersion method of the <a class="el" href="classModule.html">Module</a> class. 
36 <p>
37
38 <p>
39 Definition at line <a class="el" href="modules_8h-source.html#l00111">111</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.<hr><h2>Constructor &amp; Destructor Documentation</h2>
40 <a name="a0" doxytag="Version::Version"></a><p>
41 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
42   <tr>
43     <td class="mdRow">
44       <table cellpadding="0" cellspacing="0" border="0">
45         <tr>
46           <td class="md" nowrap valign="top"> Version::Version </td>
47           <td class="md" valign="top">(&nbsp;</td>
48           <td class="md" nowrap valign="top">int&nbsp;</td>
49           <td class="mdname" nowrap> <em>major</em>, </td>
50         </tr>
51         <tr>
52           <td></td>
53           <td></td>
54           <td class="md" nowrap>int&nbsp;</td>
55           <td class="mdname" nowrap> <em>minor</em>, </td>
56         </tr>
57         <tr>
58           <td></td>
59           <td></td>
60           <td class="md" nowrap>int&nbsp;</td>
61           <td class="mdname" nowrap> <em>revision</em>, </td>
62         </tr>
63         <tr>
64           <td></td>
65           <td></td>
66           <td class="md" nowrap>int&nbsp;</td>
67           <td class="mdname" nowrap> <em>build</em>, </td>
68         </tr>
69         <tr>
70           <td></td>
71           <td></td>
72           <td class="md" nowrap>int&nbsp;</td>
73           <td class="mdname" nowrap> <em>flags</em></td>
74         </tr>
75         <tr>
76           <td></td>
77           <td class="md">)&nbsp;</td>
78           <td class="md" colspan="2"></td>
79         </tr>
80
81       </table>
82     </td>
83   </tr>
84 </table>
85 <table cellspacing=5 cellpadding=0 border=0>
86   <tr>
87     <td>
88       &nbsp;
89     </td>
90     <td>
91
92 <p>
93
94 <p>
95 Definition at line <a class="el" href="modules_8cpp-source.html#l00300">300</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
96 <p>
97 <div class="fragment"><pre>00300 : <a class="code" href="classVersion.html#o0">Major</a>(major), <a class="code" href="classVersion.html#o1">Minor</a>(minor), <a class="code" href="classVersion.html#o2">Revision</a>(revision), <a class="code" href="classVersion.html#o3">Build</a>(build), <a class="code" href="classVersion.html#o4">Flags</a>(flags) { };
98 </pre></div>    </td>
99   </tr>
100 </table>
101 <hr><h2>Member Data Documentation</h2>
102 <a name="o3" doxytag="Version::Build"></a><p>
103 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
104   <tr>
105     <td class="mdRow">
106       <table cellpadding="0" cellspacing="0" border="0">
107         <tr>
108           <td class="md" nowrap valign="top"> const int <a class="el" href="classVersion.html#o3">Version::Build</a>
109       </table>
110     </td>
111   </tr>
112 </table>
113 <table cellspacing=5 cellpadding=0 border=0>
114   <tr>
115     <td>
116       &nbsp;
117     </td>
118     <td>
119
120 <p>
121
122 <p>
123 Definition at line <a class="el" href="modules_8h-source.html#l00114">114</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.    </td>
124   </tr>
125 </table>
126 <a name="o4" doxytag="Version::Flags"></a><p>
127 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
128   <tr>
129     <td class="mdRow">
130       <table cellpadding="0" cellspacing="0" border="0">
131         <tr>
132           <td class="md" nowrap valign="top"> const int <a class="el" href="classVersion.html#o4">Version::Flags</a>
133       </table>
134     </td>
135   </tr>
136 </table>
137 <table cellspacing=5 cellpadding=0 border=0>
138   <tr>
139     <td>
140       &nbsp;
141     </td>
142     <td>
143
144 <p>
145
146 <p>
147 Definition at line <a class="el" href="modules_8h-source.html#l00114">114</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.    </td>
148   </tr>
149 </table>
150 <a name="o0" doxytag="Version::Major"></a><p>
151 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
152   <tr>
153     <td class="mdRow">
154       <table cellpadding="0" cellspacing="0" border="0">
155         <tr>
156           <td class="md" nowrap valign="top"> const int <a class="el" href="classVersion.html#o0">Version::Major</a>
157       </table>
158     </td>
159   </tr>
160 </table>
161 <table cellspacing=5 cellpadding=0 border=0>
162   <tr>
163     <td>
164       &nbsp;
165     </td>
166     <td>
167
168 <p>
169
170 <p>
171 Definition at line <a class="el" href="modules_8h-source.html#l00114">114</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.    </td>
172   </tr>
173 </table>
174 <a name="o1" doxytag="Version::Minor"></a><p>
175 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
176   <tr>
177     <td class="mdRow">
178       <table cellpadding="0" cellspacing="0" border="0">
179         <tr>
180           <td class="md" nowrap valign="top"> const int <a class="el" href="classVersion.html#o1">Version::Minor</a>
181       </table>
182     </td>
183   </tr>
184 </table>
185 <table cellspacing=5 cellpadding=0 border=0>
186   <tr>
187     <td>
188       &nbsp;
189     </td>
190     <td>
191
192 <p>
193
194 <p>
195 Definition at line <a class="el" href="modules_8h-source.html#l00114">114</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.    </td>
196   </tr>
197 </table>
198 <a name="o2" doxytag="Version::Revision"></a><p>
199 <table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
200   <tr>
201     <td class="mdRow">
202       <table cellpadding="0" cellspacing="0" border="0">
203         <tr>
204           <td class="md" nowrap valign="top"> const int <a class="el" href="classVersion.html#o2">Version::Revision</a>
205       </table>
206     </td>
207   </tr>
208 </table>
209 <table cellspacing=5 cellpadding=0 border=0>
210   <tr>
211     <td>
212       &nbsp;
213     </td>
214     <td>
215
216 <p>
217
218 <p>
219 Definition at line <a class="el" href="modules_8h-source.html#l00114">114</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.    </td>
220   </tr>
221 </table>
222 <hr>The documentation for this class was generated from the following files:<ul>
223 <li><a class="el" href="modules_8h-source.html">modules.h</a><li><a class="el" href="modules_8cpp-source.html">modules.cpp</a></ul>
224 <hr size="1"><address style="align: right;"><small>Generated on Sat May 7 15:34:29 2005 for InspIRCd by
225 <a href="http://www.doxygen.org/index.html">
226 <img src="doxygen.png" alt="doxygen" align="middle" border=0 > 
227 </a>1.3.3 </small></address>
228 </body>
229 </html>