474b40ff1e12eca24150aa3f3e47c646e253f896
[senf.git] / Utils / Mainpage.dox
1 namespace senf {
2
3 /** \mainpage The SENF Utilities Library
4
5     The Utilities Library is a collection of independent utilities. We have 
6
7     <dl>
8
9     <dt>\ref logger</dt><dd>highly flexible logging infrastructure</dd>
10
11     <dt>SystemException</dt><dd>standard exception for system errors (errno)</dd>
12
13     <dt>\ref time</dt><dd>Very rudimentary microsecond time support</dd>
14
15     <dt>\ref process</dt><dd>Some simple process management and daemon helpers<?dd>
16
17     <dt>\ref membind</dt><dd>a simple <a
18     href="http://www.boost.org/libs/bind/bind.html">Boost.Bind</a> extension</dd>
19
20     <dt>intrusive_refcount</dt><dd>mixin to simplify writing classes for use with <a
21     href="http://www.boost.org/libs/smart_ptr/intrusive_ptr.html">boost::intrusive_ptr</a></dd>
22
23     <dt>SafeBool</dt><dd>a mixin class to provide a really safe replacement for <tt>operator
24     bool</tt></dd>
25     
26     <dt>pool_alloc_mixin</dt><dd>mixin to provide pool allocation to a class</dd>
27     
28     <dt>\ref singleton</dt><dd>mixin to make a class a singleton</dd>
29
30     <dt>prettyName()</dt><dd>an interface to the C++ demangler of g++ to get formated type names
31     from typeinfo objects</dd>
32
33     <dt>\ref SENF_SCOPED_BUFFER</dt><dd>a portable way to efficiently allocate temporary
34     buffers</dd>
35
36     <dt>\ref contiguous_storage_iterator</dt><dd>traits class to check iterator type for raw pointer
37     accessibility</dd>
38
39     <dt>\ref TypeIdValue</dt><dd>class wrapping a typeid in a way that it can be used like any other
40     value type, e.g. as the key in a map.</dd>
41
42     </dl>
43  */
44
45 }
46
47 \f
48 // Local Variables:
49 // mode: c++
50 // fill-column: 100
51 // c-file-style: "senf"
52 // indent-tabs-mode: nil
53 // ispell-local-dictionary: "american"
54 // mode: flyspell
55 // mode: auto-fill
56 // End: