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.
58 lines
1.5 KiB
58 lines
1.5 KiB
21 years ago
|
/** @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
|
||
|
|
||
21 years ago
|
Download this version from here:
|
||
|
- http://marc.waeckerlin.org/c++/libmrw/mrw-c++-@MAJOR@.@MINOR@.tar.gz
|
||
|
- http://marc.waeckerlin.org/c++/libmrw/mrw-c++-@MAJOR@.@MINOR@.rpm
|
||
|
|
||
|
The homepage is on:
|
||
|
- http://marc.waeckerlin.org/c++/libmrw/index.html
|
||
21 years ago
|
|
||
|
Install it with:
|
||
|
|
||
|
@verbatim
|
||
21 years ago
|
tar xzvf mrw-c++-@MAJOR@.@MINOR@.tar.gz
|
||
|
cd mrw-c++-@MAJOR@.@MINOR@
|
||
21 years ago
|
./configure
|
||
|
make all check install
|
||
|
@endverbatim
|
||
|
*/
|
||
21 years ago
|
|
||
|
/** @page license License
|
||
|
@verbinclude COPYING */
|
||
|
|
||
|
/** @page readme Readme
|
||
|
@verbinclude README */
|
||
|
|
||
|
/** @page news News
|
||
|
@verbinclude NEWS */
|
||
|
|
||
|
/** @page changes Change Log
|
||
|
@verbinclude ChangeLog */
|