OOPS
GeometryQGIterator.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef QG_MODEL_GEOMETRYQGITERATOR_H_
12 #define QG_MODEL_GEOMETRYQGITERATOR_H_
13 
14 #include <iterator>
15 #include <string>
16 
17 #include "eckit/geometry/Point2.h"
18 
19 #include "oops/util/ObjectCounter.h"
20 #include "oops/util/Printable.h"
21 
22 #include "oops/qg/GeometryQG.h"
23 #include "oops/qg/QgFortran.h"
24 
25 namespace qg {
26 
27 class GeometryQG;
28 
29 // -----------------------------------------------------------------------------
30 class GeometryQGIterator: public std::iterator<std::forward_iterator_tag,
31  eckit::geometry::Point2>,
32  public util::Printable,
33  private util::ObjectCounter<GeometryQGIterator> {
34  public:
35  static const std::string classname() {return "qg::GeometryQGIterator";}
36 
38  explicit GeometryQGIterator(const GeometryQG & geom, const int & index = 1);
40 
41  bool operator==(const GeometryQGIterator &) const;
42  bool operator!=(const GeometryQGIterator &) const;
43  eckit::geometry::Point2 operator*() const;
45 
46  const F90iter & toFortran() const {return keyIter_;}
47 
48  private:
49  void print(std::ostream &) const;
51 };
52 
53 } // namespace qg
54 
55 #endif // QG_MODEL_GEOMETRYQGITERATOR_H_
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
GeometryQGIterator(const GeometryQGIterator &)
void print(std::ostream &) const
GeometryQGIterator & operator++()
bool operator==(const GeometryQGIterator &) const
eckit::geometry::Point2 operator*() const
static const std::string classname()
bool operator!=(const GeometryQGIterator &) const
const F90iter & toFortran() const
The namespace for the qg model.
int F90iter
Definition: QgFortran.h:43