Skip to content
Snippets Groups Projects
Commit 89e5f014 authored by g0dil's avatar g0dil
Browse files

Utils: More documentation

parent e27683cd
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,8 @@ namespace senf {
<tr><td>\ref boost_parameter</td><td>Utilities concerning the <a
href="http://www.boost.org/doc/libs/1_33_1/libs/parameter/doc/html/index.html">Boost.Parameter</a>
library</td></tr>
<tr><td>\ref phoenix_helpers</td><td>Phoenix functors</td></tr>
</table>
......@@ -108,6 +110,8 @@ namespace senf {
<tr><td>\ref backtraces</td><td>Utilities to parse and format backtrace information as provided
by the GNU libc</td></tr>
<tr><td>signalName()</td><td>convert signal number to string representation</td></tr>
</table>
......
......@@ -33,10 +33,25 @@
#include "Phoenix.ih"
///////////////////////////////hh.p////////////////////////////////////////
/** \defgroup phoenix_helpers Boost.Phoenix extensions */
namespace senf {
namespace phoenix {
/** \brief \c push_back phoenix functor
<tt>push_back(c, x) := c.push_back(x)</tt>
\ingroup phoenix_helpers
*/
::phoenix::function<detail::push_back> const push_back;
/** \brief \c clear phoenix functor
<tt>clear(c) := c.clear()</tt>
\ingroup phoenix_helpers
*/
::phoenix::function<detail::clear> const clear;
}}
......
......@@ -34,6 +34,7 @@
namespace senf {
/** \brief Convert signal number to signal name */
std::string const & signalName(int signal);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment