Fixed whitespace in all files (no tabs)
[senf.git] / Packets / ParseArray.ih
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 #ifndef IH_ParseArray_
24 #define IH_ParseArray_ 1
25
26 // Custom includes
27 #include <boost/iterator/iterator_facade.hpp>
28
29 ///////////////////////////////ih.p////////////////////////////////////////
30
31 template <class Parser, class Iterator>
32 class senf::impl::Parse_Array_iterator
33     : public boost::iterator_facade< Parse_Array_iterator<Parser,Iterator>,
34                                      Parser,
35                                      boost::random_access_traversal_tag,
36                                      Parser >
37 {
38 public:
39     Parse_Array_iterator();
40     explicit Parse_Array_iterator(Iterator const & i);
41
42     // Needed to elide the []-proxy of iterator_facade
43     Parser operator[](int i) const;
44
45     Iterator raw() const;
46
47 protected:
48
49 private:
50     friend class boost::iterator_core_access;
51
52     Parser dereference() const;
53     bool equal(Parse_Array_iterator const & other) const;
54     int distance_to(Parse_Array_iterator const & other) const;
55     void increment();
56     void decrement();
57     void advance(int n);
58
59     Iterator i_;
60 };
61
62 ///////////////////////////////ih.e////////////////////////////////////////
63 #endif
64
65 \f
66 // Local Variables:
67 // mode: c++
68 // fill-column: 100
69 // c-file-style: "senf"
70 // indent-tabs-mode: nil
71 // ispell-local-dictionary: "american"
72 // End: