711946cffb3b114ef00af145d523f279fbe8cdd9
[senf.git] / Utils / Mainpage.dox
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 namespace senf {
24
25 /** \mainpage The SENF Utilities Library
26
27     The Utilities Library is a collection of independent utilities.
28
29
30     \section basic_helpers C++ Language helpers and library extensions
31
32     <table class="listing">
33     <tr><td>\ref membind</td><td>a simple <a
34     href="http://www.boost.org/libs/bind/bind.html">Boost.Bind</a> extension</td></tr>
35
36     <tr><td>\ref senfmpl</td><td>Some simple tools which help to solve common meta-programming
37     tasks</td></tr>
38
39     <tr><td>\ref senfpp</td><td>Extensions to the Boost.Preprocessor library</td></tr>
40
41     <tr><td>\ref typetraits</td><td>Extensions to the Boost.TypeTraits library</td></tr>
42     </table>
43
44
45     \section basic_mixins Mixin classes
46     
47     <table class="listing">
48     <tr><td>\ref intrusive_refcount</td><td>mixin to simplify writing classes for use with <a
49     href="http://www.boost.org/libs/smart_ptr/intrusive_ptr.html">boost::intrusive_ptr</a></td></tr>
50
51     <tr><td>\ref safe_bool</td><td>a mixin class to provide a really safe replacement for
52     <tt>operator bool</tt>
53     
54     <tr><td>\ref singleton</td><td>mixin to make a class a singleton</td></tr>
55     </table>
56     
57
58     \section memory_management Memory Management
59
60     <table class="listing">
61     <tr><td>\ref SENF_SCOPED_BUFFER</td><td>a portable way to efficiently allocate temporary
62     buffers</td></tr>
63
64     <tr><td>\ref pool_alloc_mixin</td><td>mixin to provide pool allocation to a class</td></tr>
65     
66     <tr><td>\ref contiguous_storage_iterator</td><td>traits class to check iterator type for raw
67     pointer accessibility</td></tr>
68     </table>
69
70
71     \section typeinfo C++ Type interface
72
73     <table class="listing">
74     <tr><td>\ref prettyName()</td><td>an interface to the C++ demangler of g++ to get formated type
75     names from typeinfo objects</td></tr>
76
77     <tr><td>\ref TypeIdValue</td><td>class wrapping a typeid in a way that it can be used like any
78     other value type, e.g. as the key in a map.</td></tr>
79     </table>
80     
81
82     \section miscstuff Miscellaneous
83
84     <table class="listing">
85     <tr><td>\ref exception</td><td>standard exception for system errors (errno)</td></tr>
86
87     <tr><td>\ref hexdump</td><td>a simple but usefull function to write binary data in in
88     hexadecimal format.</td></tr>
89
90     <tr><td>\ref IpChecksum</td><td>calculating the 16 bit checksum used in the IP
91     specification</td></tr>
92
93     <tr><td>\ref utils_tags</td><td>Miscellaneous type tags</td></tr>
94     </table>
95
96     \section compatibility Compatibility
97
98     <table class="listing">
99     <tr><td>\ref auto_unit_test.hh</td><td>Boost auto unit test compatibility across Boost versions
100     1.33 and 1.34</td></tr>
101     </table>
102  */
103
104 }
105
106 \f
107 // Local Variables:
108 // mode: c++
109 // fill-column: 100
110 // c-file-style: "senf"
111 // indent-tabs-mode: nil
112 // ispell-local-dictionary: "american"
113 // mode: auto-fill
114 // End: