X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FParseArray.ih;h=d07c26fcdc3b6cfbf92575415367a2e52ab425bf;hb=81ffa1c459b96dd44472bcef37e1e373934ee138;hp=71e7dd0a763200d08773ff31e708b79ccdfa69b2;hpb=85ab07d100a382467a42e19d741d403a7a96c951;p=senf.git diff --git a/Packets/ParseArray.ih b/Packets/ParseArray.ih index 71e7dd0..d07c26f 100644 --- a/Packets/ParseArray.ih +++ b/Packets/ParseArray.ih @@ -20,6 +20,9 @@ // Free Software Foundation, Inc., // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +/** \file + \brief ParseArray internal header */ + #ifndef IH_ParseArray_ #define IH_ParseArray_ 1 @@ -28,35 +31,48 @@ ///////////////////////////////ih.p//////////////////////////////////////// -template -class senf::impl::Parse_Array_iterator - : public boost::iterator_facade< Parse_Array_iterator, - Parser, +/** \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, + ElementParser, boost::random_access_traversal_tag, - Parser > + ElementParser > { public: Parse_Array_iterator(); - explicit Parse_Array_iterator(Iterator const & i); + Parse_Array_iterator(PacketParserBase::data_iterator const & i, + PacketParserBase::state_type s); // Needed to elide the []-proxy of iterator_facade - Parser operator[](int i) const; + ElementParser operator[](int i) const; - 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: private: friend class boost::iterator_core_access; + + // iterator_facade interface - Parser dereference() const; + ElementParser dereference() const; bool equal(Parse_Array_iterator const & other) const; int distance_to(Parse_Array_iterator const & other) const; void increment(); void decrement(); void advance(int n); - Iterator i_; + PacketParserBase::data_iterator i_; + PacketParserBase::state_type s_; }; ///////////////////////////////ih.e//////////////////////////////////////// @@ -69,4 +85,6 @@ private: // c-file-style: "senf" // indent-tabs-mode: nil // ispell-local-dictionary: "american" +// compile-command: "scons -u test" +// comment-column: 40 // End: