2004-04-21 06:39:20 +00:00
|
|
|
/** @mainpage
|
|
|
|
|
|
|
|
@section license License and Copyright
|
|
|
|
|
|
|
|
- All files are under GNU LGPL license.
|
|
|
|
- All files are copyrighted by Marc Wäckerlin.
|
|
|
|
- There is no warranty.
|
|
|
|
- For details, read the file LICENSE in your distribution.
|
|
|
|
|
|
|
|
@section intro Introduction
|
|
|
|
|
|
|
|
This library cares a about:
|
|
|
|
- resource management
|
|
|
|
- execution of UNIX sub processes
|
|
|
|
- stack trace
|
|
|
|
- exception handling
|
|
|
|
|
|
|
|
For details, see the modules page.
|
|
|
|
|
|
|
|
@section link Compile and Link Options
|
|
|
|
|
|
|
|
To be able to get the source file name / line number
|
|
|
|
information in stack trace, you need the debug information compile
|
|
|
|
option @c -g. For compilation on Solaris, you may need the option
|
|
|
|
@c -D__solaris__. You must link to the MRW C++ Library. For this
|
|
|
|
you need the link option @c -lmrw.
|
|
|
|
|
|
|
|
@section download Download and Installation
|
|
|
|
|
2004-04-21 19:03:38 +00:00
|
|
|
Download this version from here:
|
2004-04-21 20:24:14 +00:00
|
|
|
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-@MAJOR@.@MINOR@.tar.gz
|
|
|
|
|
|
|
|
Not yet available:
|
|
|
|
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-@MAJOR@.@MINOR@.rpm
|
|
|
|
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-devel-@MAJOR@.@MINOR@.rpm
|
2004-04-21 19:03:38 +00:00
|
|
|
|
|
|
|
The homepage is on:
|
2004-04-21 20:24:14 +00:00
|
|
|
- http://marc.waeckerlin.org/mrw-c++/index.html
|
2004-04-21 06:39:20 +00:00
|
|
|
|
|
|
|
Install it with:
|
|
|
|
|
|
|
|
@verbatim
|
2004-04-21 19:03:38 +00:00
|
|
|
tar xzvf mrw-c++-@MAJOR@.@MINOR@.tar.gz
|
|
|
|
cd mrw-c++-@MAJOR@.@MINOR@
|
2004-04-21 06:39:20 +00:00
|
|
|
./configure
|
|
|
|
make all check install
|
|
|
|
@endverbatim
|
|
|
|
*/
|
2004-04-21 19:03:38 +00:00
|
|
|
|
|
|
|
/** @page license License
|
|
|
|
@verbinclude COPYING */
|
|
|
|
|
|
|
|
/** @page readme Readme
|
|
|
|
@verbinclude README */
|
|
|
|
|
|
|
|
/** @page news News
|
|
|
|
@verbinclude NEWS */
|
|
|
|
|
|
|
|
/** @page changes Change Log
|
|
|
|
@verbinclude ChangeLog */
|