C++ Library containing a lot of needful things: Stack Trace, Command Line Parser, Resource Handling, Configuration Files, Unix Command Execution, Directories, Regular Expressions, Tokenizer, Function Trace, Standard Extensions.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.2 KiB
75 lines
2.2 KiB
/** @mainpage |
|
|
|
$Date$ |
|
|
|
@section intro Introduction |
|
|
|
@verbinclude README |
|
|
|
For details, see the <a href="modules.html">"Modules"</a> page. |
|
|
|
@section download Download |
|
|
|
Download this version from here: |
|
- Source TAR-Ball (<code>./configure && make all install</code>): |
|
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-@MAJOR@.@MINOR@.@LEAST@.tar.gz |
|
- RPM Packages (built on i586/SuSE): |
|
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-@MAJOR@.@MINOR@.@LEAST@-1.i586.rpm |
|
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-devel-@MAJOR@.@MINOR@.@LEAST@-1.i586.rpm |
|
|
|
Download this documentation in PDF: |
|
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-@MAJOR@.@MINOR@.@LEAST@.pdf |
|
|
|
The homepage is on: |
|
- http://marc.waeckerlin.org/mrw-c++/index.html |
|
|
|
@section usage Usage of the Library |
|
|
|
Include the headers you need with prefix @c mrw, e.g.: |
|
|
|
@verbatim |
|
#include <mrw/stacktrace.hpp> |
|
@endverbatim |
|
|
|
Compile with debug information enabled, thats option @c -g and |
|
link to the library with option @c -lmrw, e.g.; |
|
|
|
@verbatim |
|
g++ -g -o myprogram myprogram.cpp -lmrw |
|
@endverbatim |
|
|
|
For the @ref AutoTools "unexpected handler" you need to link with |
|
@c -lmrwexcstderr or @c -lmrwexclog4cxx. |
|
|
|
@section moreinfo Additional Information |
|
|
|
@section threads Thread Safety |
|
|
|
All classes are not thread safe, that means they should either |
|
always be accessed from the same thread, or you are responsible |
|
for locking. If you need thread safety as a feature, please send |
|
me an email and ask me for it (you find the adress in the package |
|
or on my personal homepage: http://marc.waeckerlin.org). |
|
|
|
See the <a href="pages.html">"Related Pages"</a>. |
|
|
|
- @ref license "License Information (LGPL)" |
|
- @ref install "Compilation and Installation Information" |
|
- @ref news "Breaking News" |
|
- @ref changes "Change Log" |
|
*/ |
|
|
|
/** @page license License |
|
@verbinclude COPYING */ |
|
|
|
/** @page readme Readme |
|
@verbinclude README */ |
|
|
|
/** @page install Installation |
|
@verbinclude INSTALL */ |
|
|
|
/** @page news News |
|
@verbinclude NEWS */ |
|
|
|
/** @page changes Change Log |
|
@verbinclude ChangeLog */
|
|
|