Fixed whitespace in all files (no tabs)
[senf.git] / Packets / ParseListS.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_ParseListS_
24 #define IH_ParseListS_ 1
25
26 // Custom includes
27 #include <boost/iterator/iterator_facade.hpp>
28
29 ///////////////////////////////ih.p////////////////////////////////////////
30
31 namespace senf {
32
33 namespace impl {
34
35     template <class Parser, class Sentinel, class Iterator>
36     class Parse_ListS_iterator
37         : public boost::iterator_facade< Parse_ListS_iterator<Parser,Sentinel,Iterator>,
38                                          Parser,
39                                          boost::forward_traversal_tag,
40                                          Parser >
41     {
42     public:
43         Parse_ListS_iterator();
44         explicit Parse_ListS_iterator(Iterator const & i);
45
46         Iterator raw() const;
47
48     private:
49         friend class boost::iterator_core_access;
50
51         Parser dereference() const;
52         bool equal(Parse_ListS_iterator const & other) const;
53         void increment();
54
55         Iterator i_;
56         bool atEnd_;
57     };
58
59 }}
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: