Documentation updates.
This commit is contained in:
parent
6749489559
commit
d9e763ed2b
25
README.html
25
README.html
@ -41,13 +41,30 @@ document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'" clas'+'s="em' + 'ail">'+e+'<\
|
||||
<nav id="TOC">
|
||||
<ul>
|
||||
<li><a href="#introduction"><span class="toc-section-number">1</span> Introduction</a></li>
|
||||
<li><a href="#license"><span class="toc-section-number">2</span> License</a></li>
|
||||
<li><a href="#acknowledgement"><span class="toc-section-number">3</span> Acknowledgement</a></li>
|
||||
<li><a href="#project-structure"><span class="toc-section-number">2</span> Project Structure</a></li>
|
||||
<li><a href="#api-documentation"><span class="toc-section-number">3</span> API Documentation</a></li>
|
||||
<li><a href="#license"><span class="toc-section-number">4</span> License</a></li>
|
||||
<li><a href="#acknowledgement"><span class="toc-section-number">5</span> Acknowledgement</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<h1 id="introduction"><span class="header-section-number">1</span> Introduction</h1>
|
||||
<p>The <strong>MUtilities</strong> library is a collection of routines and classes to extend the <a href="http://qt-project.org/"><em>Qt cross-platform framework</em></a>. It contains various convenience and utility functions as well as wrappers for OS-specific functionalities. The library was originally created as a "side product" of the <a href="http://lamexp.sourceforge.net/"><strong>LameXP</strong></a> application: Over the years, a lot of code, <strong>not</strong> really specific to <em>LameXP</em>, had accumulated in the <em>LameXP</em> code base. Some of that code even had been used in other projects too, in a "copy & paste" fashion – which had lead to redundancy and much complicated maintenance. In order to clean-up the LameXP code base, to eliminate the ugly redundancy and to simplify maintenance, the code in question has finally been refactored into the <strong>MUtilities</strong> (aka "MuldeR's Utilities for Qt") library. This library now forms the foundation of <em>LameXP</em> and <a href="https://github.com/lordmulder"><em>other OpenSource projects</em></a>.</p>
|
||||
<h1 id="license"><span class="header-section-number">2</span> License</h1>
|
||||
<h1 id="project-structure"><span class="header-section-number">2</span> Project Structure</h1>
|
||||
<p>The <em>MUtilities</em> project directory is structured as follows:</p>
|
||||
<ul>
|
||||
<li><code>bin/</code> – compiled library files (static or shared), link those files in projects that use the MUtilities library</li>
|
||||
<li><code>docs/</code> – programming interface documentation, generated with Doxygen tool</li>
|
||||
<li><code>etc/</code> – miscellaneous files, everything that doesn't fit in anywhere else</li>
|
||||
<li><code>include/</code> – public header files, include this directory in projects that use the MUtilities library</li>
|
||||
<li><code>obj/</code> – object code files, intermediate files generated during the build process</li>
|
||||
<li><code>res/</code> – resouce files, required for building the MUtilities library</li>
|
||||
<li><code>src/</code> – source code files, required for building the MUtilities library (third-party code in <code>src/3rd_party/</code>)</li>
|
||||
<li><code>test/</code> – unit tests, based on Google Test framework</li>
|
||||
<li><code>tmp/</code> – temporary files, automatically generated during the build process</li>
|
||||
</ul>
|
||||
<h1 id="api-documentation"><span class="header-section-number">3</span> API Documentation</h1>
|
||||
<p>A fully-fledged documentation of the <em>MUtilities</em> programming interface (API) is available thanks to <a href="http://www.stack.nl/~dimitri/doxygen/"><em>Doxygen</em></a>. Please see <a href="docs/index.html"><strong><code>docs/index.html</code></strong></a> for details!</p>
|
||||
<h1 id="license"><span class="header-section-number">4</span> License</h1>
|
||||
<p>This library is free software. It is released under the terms of the <a href="https://www.gnu.org/licenses/lgpl-2.1.html"><em>GNU Lesser General Public License (LGPL), Version 2.1</em></a>.</p>
|
||||
<pre><code>MUtilities - MuldeR's Utilities for Qt
|
||||
Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved.
|
||||
@ -65,7 +82,7 @@ Lesser General Public License for more details.
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</code></pre>
|
||||
<h1 id="acknowledgement"><span class="header-section-number">3</span> Acknowledgement</h1>
|
||||
<h1 id="acknowledgement"><span class="header-section-number">5</span> Acknowledgement</h1>
|
||||
<p>The following third-party code is used in the MUtilities library:</p>
|
||||
<ul>
|
||||
<li><p><strong>Keccak/SHA-3 Reference Implementation</strong><br />
|
||||
|
20
README.md
20
README.md
@ -6,6 +6,26 @@
|
||||
The **MUtilities** library is a collection of routines and classes to extend the [*Qt cross-platform framework*](http://qt-project.org/). It contains various convenience and utility functions as well as wrappers for OS-specific functionalities. The library was originally created as a "side product" of the [**LameXP**](http://lamexp.sourceforge.net/) application: Over the years, a lot of code, **not** really specific to *LameXP*, had accumulated in the *LameXP* code base. Some of that code even had been used in other projects too, in a "copy & paste" fashion – which had lead to redundancy and much complicated maintenance. In order to clean-up the LameXP code base, to eliminate the ugly redundancy and to simplify maintenance, the code in question has finally been refactored into the **MUtilities** (aka "MuldeR's Utilities for Qt") library. This library now forms the foundation of *LameXP* and [*other OpenSource projects*](https://github.com/lordmulder).
|
||||
|
||||
|
||||
# Project Structure
|
||||
|
||||
The *MUtilities* project directory is structured as follows:
|
||||
|
||||
* `bin/` – compiled library files (static or shared), link those files in projects that use the MUtilities library
|
||||
* `docs/` – programming interface documentation, generated with Doxygen tool
|
||||
* `etc/` – miscellaneous files, everything that doesn't fit in anywhere else
|
||||
* `include/` – public header files, include this directory in projects that use the MUtilities library
|
||||
* `obj/` – object code files, intermediate files generated during the build process
|
||||
* `res/` – resouce files, required for building the MUtilities library
|
||||
* `src/` – source code files, required for building the MUtilities library (third-party code in `src/3rd_party/`)
|
||||
* `test/` – unit tests, based on Google Test framework
|
||||
* `tmp/` – temporary files, automatically generated during the build process
|
||||
|
||||
|
||||
# API Documentation
|
||||
|
||||
A fully-fledged documentation of the *MUtilities* programming interface (API) is available thanks to [*Doxygen*](http://www.stack.nl/~dimitri/doxygen/). Please see [**`docs/index.html`**](docs/index.html) for details!
|
||||
|
||||
|
||||
# License
|
||||
|
||||
This library is free software. It is released under the terms of the [*GNU Lesser General Public License (LGPL), Version 2.1*](https://www.gnu.org/licenses/lgpl-2.1.html).
|
||||
|
@ -90,7 +90,7 @@ $(function() {
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -90,7 +90,7 @@ $(function() {
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -158,7 +158,7 @@ void </td><td class="memItemRight" valign="bottom"><b>testKnownHosts</b> (v
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -73,7 +73,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -104,7 +104,7 @@ unsigned int </td><td class="memItemRight" valign="bottom"><b>bitsAvailable
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -92,7 +92,7 @@ QByteArray </td><td class="memItemRight" valign="bottom"><b>finalize</b> (c
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -77,7 +77,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -73,7 +73,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -114,7 +114,7 @@ class </td><td class="memItemRight" valign="bottom"><b>UpdateChecker</b></t
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -104,7 +104,7 @@ static const char *const </td><td class="memItemRight" valign="bottom"><b>c
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -73,7 +73,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -73,7 +73,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -88,7 +88,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -82,7 +82,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -72,7 +72,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -106,7 +106,7 @@ bool </td><td class="memItemRight" valign="bottom"><b>setOverlayIcon</b> (c
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -96,7 +96,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -73,7 +73,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -84,7 +84,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -81,7 +81,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -81,7 +81,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -73,7 +73,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -73,7 +73,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -84,7 +84,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -72,7 +72,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -73,7 +73,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -624,7 +624,7 @@ int </td><td class="memItemRight" valign="bottom"><b>MUtils::Internal::self
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -83,7 +83,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -72,7 +72,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -84,7 +84,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -112,7 +112,7 @@ static const quint32 </td><td class="memItemRight" valign="bottom"><b>MAX_P
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -74,7 +74,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -72,7 +72,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -72,7 +72,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -85,7 +85,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -104,7 +104,7 @@ bool </td><td class="memItemRight" valign="bottom"><b>enum_subkeys</b> (QSt
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -72,7 +72,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -117,7 +117,7 @@ bool </td><td class="memItemRight" valign="bottom"><b>overrideFlag</b></td>
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -82,7 +82,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -86,7 +86,7 @@ bool </td><td class="memItemRight" valign="bottom"><b>terminateJob</b> (uns
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -78,7 +78,7 @@ $(function() {
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -122,7 +122,7 @@ QByteArray </td><td class="memItemRight" valign="bottom"><b>m_hashResult</b
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -107,7 +107,7 @@ char </td><td class="memItemRight" valign="bottom"><b>brand</b> [0x40]</td>
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -74,7 +74,7 @@ $(function() {
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:27 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:13 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
File diff suppressed because one or more lines are too long
@ -77,7 +77,7 @@ Files</h2></td></tr>
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -74,7 +74,7 @@ Directories</h2></td></tr>
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -90,7 +90,7 @@ $(function() {
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:15 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -83,7 +83,7 @@ $(function() {
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:15 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
@ -73,7 +73,7 @@ $(function() {
|
||||
<div class="fragment"><div class="line">MUtilities - MuldeR<span class="stringliteral">'s Utilities for Qt</span></div><div class="line"><span class="stringliteral">Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">This library is free software; you can redistribute it and/or</span></div><div class="line"><span class="stringliteral">modify it under the terms of the GNU Lesser General Public</span></div><div class="line"><span class="stringliteral">License as published by the Free Software Foundation; either</span></div><div class="line"><span class="stringliteral">version 2.1 of the License, or (at your option) any later version.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">This library is distributed in the hope that it will be useful,</span></div><div class="line"><span class="stringliteral">but WITHOUT ANY WARRANTY; without even the implied warranty of</span></div><div class="line"><span class="stringliteral">MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span></div><div class="line"><span class="stringliteral">Lesser General Public License for more details.</span></div><div class="line"><span class="stringliteral"></span></div><div class="line"><span class="stringliteral">You should have received a copy of the GNU Lesser General Public</span></div><div class="line"><span class="stringliteral">License along with this library; if not, write to the Free Software</span></div><div class="line"><span class="stringliteral">Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</span></div></div><!-- fragment --> </div></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Mon Dec 19 2016 01:56:28 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Mon Dec 19 2016 02:43:14 for MuldeR's Utilities for Qt by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.12
|
||||
</small></address>
|
||||
|
Loading…
Reference in New Issue
Block a user