Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / Console / ParsedCommand.cti
index 1d36bb4..a7d7acf 100644 (file)
@@ -31,9 +31,9 @@
 #include <senf/Utils/parameter.hh>
 
 #define prefix_ inline
-///////////////////////////////cti.p///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::detail::ArgumentInfo<ParameterType>
 
 template <class ParameterType>
@@ -57,7 +57,7 @@ prefix_ std::string senf::console::detail::ArgumentInfo<ParameterType>::defaultV
     return hasDefault ? ArgumentTraits<ParameterType>::str(defaultValue) : "";
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ParsedCommandOverloadBase
 
 template <class Type>
@@ -66,7 +66,7 @@ prefix_ void senf::console::ParsedCommandOverloadBase::addParameter()
     parameters_.push_back(detail::ArgumentInfo<Type>::create());
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ParsedCommandOverload<FunctionTraits,n>
 
 #define BOOST_PP_ITERATION_PARAMS_1 (4, (0, SENF_CONSOLE_MAX_COMMAND_ARITY,                       \
@@ -74,7 +74,7 @@ prefix_ void senf::console::ParsedCommandOverloadBase::addParameter()
                                          2))
 #include BOOST_PP_ITERATE()
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ParsedCommandAttributor<Overload>
 
 template <class Overload>
@@ -96,7 +96,7 @@ ParsedCommandAttributor(ParsedCommandAttributorBase const & other, unsigned inde
     : ParsedCommandAttributorBase (other, index)
 {}
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ParsedArgumentAttributorBase<Overload,Self>
 
 template <class Overload, class Self, class ReturnType>
@@ -183,7 +183,7 @@ ParsedArgumentAttributorBase(ParsedCommandAttributorBase const & other, unsigned
     : ParsedCommandAttributor<Overload> (other, index)
 {}
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ParsedArgumentAttributor<Overload,index,flag>
 
 template <class Overload, unsigned index, bool flag>
@@ -311,7 +311,7 @@ prefix_ void senf::console::ParsedArgumentAttributor<Overload,index,flag>::parse
     this->overload().arg<index>().parser = fn;
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ParsedArgumentAttributor<Overload, index, false>
 
 template <class Overload, unsigned index>
@@ -329,7 +329,7 @@ ParsedArgumentAttributor(ParsedCommandAttributorBase const & other)
     : ParsedArgumentAttributorBase<Overload, ParsedArgumentAttributor> (other, index)
 {}
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // namespace members
 
 namespace senf {
@@ -361,7 +361,7 @@ namespace detail {
 
 }}}
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 template <class Signature>
 prefix_ senf::console::SimpleOverloadAttributor
@@ -473,7 +473,7 @@ Command(Member memfn, Owner const * owner,
     return detail::addOverloadedCommandNode<CastTo>(senf::membind(memfn,owner));
 }
 
-///////////////////////////////cti.e///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f