Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Packets / ListBParser.ih
index fe61177..2faa19c 100644 (file)
 // Custom includes
 #include "ListParser.ih"
 
-///////////////////////////////ih.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 namespace detail {
 
     /** \brief Internal: ListPolicy defing the ListBParser parser
         \internal
-        \see \ref ListBParser
+        \see \ref ListParser
      */
     template <class ElementParser, class AuxPolicy>
     struct ListBParser_Policy
@@ -88,7 +88,7 @@ namespace detail {
 
         /** \brief Internal: ListBParser container/wrapper policy */
         struct container_policy
-            : public AuxPolicy
+            : public AuxPolicy::WrapperPolicy
         {
             typedef PacketParserBase::data_iterator data_iterator;
             typedef PacketParserBase::state_type state_type;
@@ -107,9 +107,11 @@ namespace detail {
             size_type size   (data_iterator i, state_type s) const;
             void      init   (data_iterator i, state_type s);
 
-            void      erase  (container_type & c, data_iterator p);
-            void      insert (container_type & c, data_iterator p);
-            void      update (container_type const & c) const;
+            void      construct (container_type & c) const;
+            void      destruct  (container_type & c) const;
+            void      erase     (container_type & c, data_iterator p);
+            void      insert    (container_type & c, data_iterator p);
+            void      update    (container_type const & c) const;
 
             /** \brief Internal: ListBParser specific iterator data */
             struct iterator_data {};
@@ -136,8 +138,8 @@ namespace detail {
     };
 
     template <class ElementParser, class AuxPolicy, class Transform>
-    struct ListParserPolicy<ElementParser, AuxPolicy, 
-                            senf::detail::auxtag::transform<Transform, 
+    struct ListParserPolicy<ElementParser, AuxPolicy,
+                            senf::detail::auxtag::transform<Transform,
                                                             senf::detail::auxtag::bytes> >
     {
         typedef ListBParser_Policy< ElementParser,
@@ -148,7 +150,7 @@ namespace detail {
 
 }}
 
-///////////////////////////////ih.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #endif
 
 \f