Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / PPI / detail / EventBinding.cti
index 96a81a6..13f8149 100644 (file)
@@ -29,9 +29,9 @@
 #include <senf/PPI/EventManager.hh>
 
 #define prefix_ inline
-///////////////////////////////cti.p///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::ppi::detail::EventBindingHelper<EventType,Self>
 
 template <class EventType, class Self>
@@ -49,7 +49,7 @@ prefix_ void senf::ppi::detail::EventBindingHelper<EventType,Self>::callback(Eve
     callback(event, self().manager().now());
 }
 
-////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // private members
 
 template <class EventType, class Self>
@@ -58,7 +58,7 @@ prefix_ Self & senf::ppi::detail::EventBindingHelper<EventType,Self>::self()
     return * static_cast<Self*>(this);
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::ppi::detail::EventBindingHelper<void,Self>
 
 template <class Self>
@@ -75,7 +75,7 @@ prefix_ void senf::ppi::detail::EventBindingHelper<void,Self>::callback()
     callback(self().manager().now());
 }
 
-////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // private members
 
 template <class Self>
@@ -84,7 +84,7 @@ prefix_ Self & senf::ppi::detail::EventBindingHelper<void,Self>::self()
     return * static_cast<Self*>(this);
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::ppi::detail::EventBinding<EvImpl>
 
 template <class EventType>
@@ -95,7 +95,7 @@ prefix_ senf::ppi::detail::EventBinding<EventType>::EventBinding(EventManager &
     : EventBindingBase(manager, module, descriptor), callback_(callback)
 {}
 
-///////////////////////////////cti.e///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f