X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FParseArray.ih;h=c5db831b7053d97f5537de685c0cb2311a86e5d5;hb=a3d3979b7daaf22ea63ca356edbfa8047dff7b78;hp=3ced579f2c0c979c19ffa29fb72ec07be31bcbb3;hpb=ac6a813d9d99f7add4e13aff7a4bcd314d5604a6;p=senf.git diff --git a/Packets/ParseArray.ih b/Packets/ParseArray.ih index 3ced579..c5db831 100644 --- a/Packets/ParseArray.ih +++ b/Packets/ParseArray.ih @@ -1,6 +1,6 @@ // $Id$ // -// Copyright (C) 2006 +// Copyright (C) 2006 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -28,36 +28,49 @@ ///////////////////////////////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; - Parser dereference() const; + // iterator_facade interface + + 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//////////////////////////////////////// #endif @@ -65,5 +78,10 @@ private: // Local Variables: // mode: c++ +// fill-column: 100 // c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" +// compile-command: "scons -u test" +// comment-column: 40 // End: