OOPS
Iterator.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2018 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef LORENZ95_ITERATOR_H_
9 #define LORENZ95_ITERATOR_H_
10 
11 #include <iterator>
12 #include <string>
13 #include <vector>
14 
15 #include "eckit/geometry/Point2.h"
16 
17 #include "lorenz95/Resolution.h"
18 
19 #include "oops/util/ObjectCounter.h"
20 #include "oops/util/Printable.h"
21 
22 namespace lorenz95 {
23 
24 class Resolution;
25 
26 // -----------------------------------------------------------------------------
27 class Iterator: public std::iterator<std::forward_iterator_tag,
28  eckit::geometry::Point2>,
29  public util::Printable,
30  private util::ObjectCounter<Iterator> {
31  public:
32  static const std::string classname() {return "lorenz95::Iterator";}
33 
34  Iterator(const Resolution & res, const int & index);
35 
36  bool operator==(const Iterator &) const;
37  bool operator!=(const Iterator &) const;
38  eckit::geometry::Point2 operator*() const;
40 
41  int index() const {return index_;}
42 
43  private:
44  void print(std::ostream & os) const override {os << index_;}
45  const int res_;
46  int index_;
47 };
48 
49 } // namespace lorenz95
50 
51 #endif // LORENZ95_ITERATOR_H_
eckit::geometry::Point2 operator*() const
Definition: Iterator.cc:29
void print(std::ostream &os) const override
Definition: Iterator.h:44
int index() const
Definition: Iterator.h:41
const int res_
Definition: Iterator.h:45
Iterator(const Resolution &res, const int &index)
Definition: Iterator.cc:15
static const std::string classname()
Definition: Iterator.h:32
bool operator!=(const Iterator &) const
Definition: Iterator.cc:24
bool operator==(const Iterator &) const
Definition: Iterator.cc:19
Iterator & operator++()
Definition: Iterator.cc:34
Handles resolution.
Definition: Resolution.h:43
The namespace for the L95 model.