Whitespce cleanup: Remove whitespace at end-on-line, remove tabs, wrap
[senf.git] / senf / Packets / ListBParser.ih
index fe61177..c3c8e2e 100644 (file)
@@ -36,7 +36,7 @@ namespace detail {
 
     /** \brief Internal: ListPolicy defing the ListBParser parser
         \internal
-        \see \ref ListBParser
+        \see \ref ListParser
      */
     template <class ElementParser, class AuxPolicy>
     struct ListBParser_Policy
@@ -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,