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.

66 lines
1.8 KiB

/** @mainpage
@section intro Introduction
20 years ago
@verbinclude README
For details, see the <a href="modules.html">"Modules"</a> page.
20 years ago
@section download Download
20 years ago
Download this version from here:
20 years ago
- Source TAR-Ball (<code>./configure && make all install</code>):
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-@MAJOR@.@MINOR@.tar.gz
- RPM Packages (built on i586/SuSE):
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-@MAJOR@.@MINOR@-1.i586.rpm
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-devel-@MAJOR@.@MINOR@-1.i586.rpm
20 years ago
20 years ago
Download this documentation in PDF:
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-@MAJOR@.@MINOR@.pdf
20 years ago
The homepage is on:
20 years ago
- http://marc.waeckerlin.org/mrw-c++/index.html
20 years ago
@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
20 years ago
g++ -g -o myprogram myprogram.cpp -lmrw
@endverbatim
20 years ago
For the @ref AutoTools "unexpected handler" you need to link with
@c -lmrwexcstderr or @c -lmrwexclog4cxx.
@section moreinfo Additional Information
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"
*/
20 years ago
/** @page license License
@verbinclude COPYING */
/** @page readme Readme
@verbinclude README */
20 years ago
/** @page install Installation
@verbinclude INSTALL */
20 years ago
/** @page news News
@verbinclude NEWS */
/** @page changes Change Log
@verbinclude ChangeLog */