QGIS API Documentation 4.0.0-Norrköping (1ddcee3d0e4)
Loading...
Searching...
No Matches
qgsfeaturestore.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsfeaturestore.cpp
3 --------------------------------------
4 Date : February 2013
5 Copyright : (C) 2013 by Radim Blazek
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#include "qgsfeaturestore.h"
17
22
24{
25 mFields = fields;
26 QgsFeatureList::iterator it = mFeatures.begin();
27 for ( ; it != mFeatures.end(); ++it )
28 {
29 ( *it ).setFields( mFields );
30 }
31}
32
34{
35 QgsFeature f( feature );
36 f.setFields( mFields );
37 mFeatures.append( f );
38 return true;
39}
40
42{
43 QgsFeatureList::iterator fIt = features.begin();
44 for ( ; fIt != features.end(); ++fIt )
45 {
46 addFeature( *fIt, flags );
47 }
48 return true;
49}
Represents a coordinate reference system (CRS).
QFlags< Flag > Flags
bool addFeatures(QgsFeatureList &features, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) override
Adds a list of features to the sink.
QgsFeatureList features() const
Returns the list of features contained in the store.
QgsFields fields() const
Returns the store's field list.
void setFields(const QgsFields &fields)
Sets the store's fields.
bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) override
Adds a single feature to the sink.
QgsCoordinateReferenceSystem crs() const
Returns the store's coordinate reference system.
QgsFeatureStore()=default
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
void setFields(const QgsFields &fields, bool initAttributes=false)
Assigns a field map with the feature to allow attribute access by attribute name.
Container of fields for a vector layer.
Definition qgsfields.h:46
QList< QgsFeature > QgsFeatureList