X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FParseArray.ih;h=c5db831b7053d97f5537de685c0cb2311a86e5d5;hb=1cf24483a4b520177bfa539d9601749be6aef2ce;hp=7ea3d5063af691353bc62479ee6aacbd3d12ceca;hpb=47368f306a577d1e46df69a7f729bd3893cbe5e7;p=senf.git diff --git a/Packets/ParseArray.ih b/Packets/ParseArray.ih index 7ea3d50..c5db831 100644 --- a/Packets/ParseArray.ih +++ b/Packets/ParseArray.ih @@ -28,6 +28,13 @@ ///////////////////////////////ih.p//////////////////////////////////////// +/** \brief Internal: Array and Vector iterator + + \internal + + This is the iterator type used for both Parse_Array and Parse_Vector. It is a model of random + access iterator. + */ template class senf::detail::Parse_Array_iterator : public boost::iterator_facade< Parse_Array_iterator, @@ -43,7 +50,9 @@ public: // Needed to elide the []-proxy of iterator_facade ElementParser operator[](int i) const; - PacketParserBase::data_iterator raw() const; + PacketParserBase::data_iterator raw() const; ///< Return data_iterator + /**< Returns the raw data_iterator pointing to the beginning + of the current element */ protected: @@ -74,4 +83,5 @@ private: // indent-tabs-mode: nil // ispell-local-dictionary: "american" // compile-command: "scons -u test" +// comment-column: 40 // End: