X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FListNParser.hh;h=2d96b566e017c83cde1b4328f19f763593bc8438;hb=ef9940d989277e814988967b0022bfdd13542045;hp=1ddfc5a490c70d4b134b1734a12db98d7ce6f6c4;hpb=380525e28d9a2a2758dedcb4875b5c3755303344;p=senf.git diff --git a/Packets/ListNParser.hh b/Packets/ListNParser.hh index 1ddfc5a..2d96b56 100644 --- a/Packets/ListNParser.hh +++ b/Packets/ListNParser.hh @@ -35,34 +35,6 @@ ///////////////////////////////hh.p//////////////////////////////////////// namespace senf { - - /** \brief List parser with size-field giving number of list elements - - This parser will parse a list which size is giving by a preceding field containing the - number of list elements. This struct is just a 'template typedef': - \code - senf::VectorNParser< Parser_UInt32, Parser_UInt16 >::parser MyVectorParser; - senf::ListNParser< MyVectorParser, UInt16Parser >::parser MyListParser; - \endcode - This first defines a Vector of 32 bit unsigned integers with 16 bit length counter. Then it - defines a list of such vectors with a 16 bit size field. - - \see ListParser - \ingroup parsecollection - */ - - /** \brief Define ListNParser field - - This macro is a special helper to define a senf::ListNParser type field, a list of elements - of type \a elt_type (a parser type) directly preceded by a numeric size field of type \a - size_type (another parser type). - - \param[in] name field name - \param[in] elt_type list element type - \param[in] size_type size type - \hideinitializer - \ingroup packetparsermacros - */ } ///////////////////////////////hh.e////////////////////////////////////////