Files
mrw-cxx/mrw/mrw.hpp.in

74 lines
2.1 KiB
C++
Raw Normal View History

2004-04-21 06:39:20 +00:00
/** @mainpage
@section intro Introduction
2004-04-23 16:03:29 +00:00
@verbinclude README
For details, see the <a href="modules.html">"Modules"</a> page.
2004-04-21 06:39:20 +00:00
2004-04-23 16:03:29 +00:00
@section download Download
2004-04-21 06:39:20 +00:00
2004-04-21 19:03:38 +00:00
Download this version from here:
2004-04-23 16:03:29 +00:00
- 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
2004-04-21 19:03:38 +00:00
2004-04-23 16:03:29 +00:00
Download this documentation in PDF:
- http://marc.waeckerlin.org/mrw-c++/mrw-c++-@MAJOR@.@MINOR@.pdf
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
2004-04-23 16:03:29 +00:00
@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.;
2004-04-21 06:39:20 +00:00
@verbatim
2004-04-23 16:03:29 +00:00
g++ -g -o myprogram myprogram.cpp -lmrw
2004-04-21 06:39:20 +00:00
@endverbatim
2004-04-23 16:03:29 +00:00
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).
2004-04-23 16:03:29 +00:00
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"
2004-04-21 06:39:20 +00:00
*/
2004-04-21 19:03:38 +00:00
/** @page license License
@verbinclude COPYING */
/** @page readme Readme
@verbinclude README */
2004-04-23 16:03:29 +00:00
/** @page install Installation
@verbinclude INSTALL */
2004-04-21 19:03:38 +00:00
/** @page news News
@verbinclude NEWS */
/** @page changes Change Log
@verbinclude ChangeLog */