Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Packets / PacketImpl.cci
index 70ac003..40f0b25 100644 (file)
 // #include "PacketInterpreter.hh"
 
 #define prefix_ inline
-///////////////////////////////cci.p///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::detail::AnnotationRegistry
 
-prefix_ void senf::detail::AnnotationRegistry::dump(key_type key, std::ostream & os,
-                                                    void * annotation)
-    const
-{
-    Registry::const_iterator i (registry_.find(key));
-    if (i != registry_.end()) {
-        os << fieldName(i->second->v_name());
-        i->second->v_dump(os, annotation);
-        os << "\n";
-    }
-}
-
 prefix_ std::string senf::detail::AnnotationRegistry::name(key_type key)
     const
 {
@@ -84,7 +72,7 @@ prefix_ senf::detail::AnnotationRegistry::AnnotationRegistry()
     : simpleAnnotationCount_ (0), complexAnnotationCount_ (0)
 {}
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 // Memory management:
 //
@@ -109,7 +97,7 @@ prefix_ senf::detail::AnnotationRegistry::AnnotationRegistry()
 // The last three also modify the impl_ member accordingly by calling
 // PacketInterpreterBase::assign/release
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::detail::PacketImpl
 
 prefix_ senf::detail::PacketImpl::PacketImpl()
@@ -238,7 +226,7 @@ prefix_ void * senf::detail::PacketImpl::annotation(AnnotationRegistry::key_type
     return key >= 0 ? & simpleAnnotations_[key] : complexAnnotation(key);
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::detail::PacketImpl::Guard
 
 prefix_ senf::detail::PacketImpl::Guard::Guard(PacketImpl * impl)
@@ -252,7 +240,7 @@ prefix_ senf::detail::PacketImpl::Guard::~Guard()
     p->release();
 }
 
-///////////////////////////////cci.e///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f