QGIS API Documentation
2.6.0-Brighton
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
src
core
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
22
class
QgsVectorLayerCache
;
23
29
class
CORE_EXPORT
QgsCachedFeatureIterator
:
public
QgsAbstractFeatureIterator
30
{
31
public
:
43
QgsCachedFeatureIterator
(
QgsVectorLayerCache
* vlCache,
QgsFeatureRequest
featureRequest,
QgsFeatureIds
featureIds );
44
51
QgsCachedFeatureIterator
(
QgsVectorLayerCache
* vlCache,
QgsFeatureRequest
featureRequest );
52
58
virtual
bool
rewind
();
59
65
virtual
bool
close
();
66
67
// QgsAbstractFeatureIterator interface
68
protected
:
77
virtual
bool
fetchFeature
(
QgsFeature
& f );
78
85
virtual
bool
nextFeatureFilterFids
(
QgsFeature
& f ) {
return
fetchFeature
( f ); }
86
87
private
:
88
QgsFeatureIds
mFeatureIds;
89
QgsVectorLayerCache
* mVectorLayerCache;
90
QgsFeatureIds::ConstIterator mFeatureIdIterator;
91
};
92
98
class
CORE_EXPORT
QgsCachedFeatureWriterIterator
:
public
QgsAbstractFeatureIterator
99
{
100
public
:
107
QgsCachedFeatureWriterIterator
(
QgsVectorLayerCache
* vlCache,
QgsFeatureRequest
featureRequest );
108
114
virtual
bool
rewind
();
115
121
virtual
bool
close
();
122
123
protected
:
124
133
virtual
bool
fetchFeature
(
QgsFeature
& f );
134
135
private
:
136
QgsFeatureIterator
mFeatIt;
137
QgsVectorLayerCache
* mVectorLayerCache;
138
QgsFeatureIds
mFids;
139
};
140
#endif // QGSCACHEDFEATUREITERATOR_H
Generated on Fri Oct 31 2014 15:49:46 for QGIS API Documentation by
1.8.1.2