QGIS API Documentation  2.0.1-Dufour
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgscachedfeatureiterator.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgscachedfeatureiterator.h
3  --------------------------------------
4  Date : 12.2.2013
5  Copyright : (C) 2013 Matthias Kuhn
6  Email : matthias dot kuhn at gmx dot ch
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSCACHEDFEATUREITERATOR_H
17 #define QGSCACHEDFEATUREITERATOR_H
18 
19 #include "qgsfeature.h"
20 #include "qgsfeatureiterator.h"
21 
23 
30 {
31  public:
41  QgsCachedFeatureIterator( QgsVectorLayerCache* vlCache, QgsFeatureRequest featureRequest, QgsFeatureIds featureIds );
42 
49  virtual bool nextFeature( QgsFeature& f );
50 
56  virtual bool rewind();
57 
63  virtual bool close();
64 
65  private:
68  QgsFeatureIds::Iterator mFeatureIdIterator;
69 };
70 
77 {
78  public:
87 
94  virtual bool nextFeature( QgsFeature& f );
95 
101  virtual bool rewind();
102 
108  virtual bool close();
109 
110  private:
114 };
115 #endif // QGSCACHEDFEATUREITERATOR_H
Wrapper for iterator of features from vector data provider or vector layer.
virtual bool close()=0
end of iterating: free the resources / lock
QSet< QgsFeatureId > QgsFeatureIds
Definition: qgsfeature.h:321
virtual bool rewind()=0
reset the iterator to the starting position
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:114
QgsFeatureIds::Iterator mFeatureIdIterator
virtual bool nextFeature(QgsFeature &f)=0
fetch next feature, return true on success
Uses another iterator as backend and writes features to the cache.
Internal feature iterator to be implemented within data providers.
This class wraps a request for features to a vector layer (or directly its vector data provider)...
This class caches features of a given QgsVectorLayer.
QgsVectorLayerCache * mVectorLayerCache
Delivers features from the cache.