mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
40 lines
892 B
Plaintext
40 lines
892 B
Plaintext
class QgsFeatureStore
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsfeaturestore.h>
|
|
%End
|
|
public:
|
|
//! Constructor
|
|
QgsFeatureStore();
|
|
|
|
//! Constructor
|
|
QgsFeatureStore( const QgsFeatureStore &rhs );
|
|
|
|
//! Constructor
|
|
QgsFeatureStore( const QgsFields& fields, const QgsCoordinateReferenceSystem& crs );
|
|
|
|
//! Destructor
|
|
~QgsFeatureStore();
|
|
|
|
/** Get fields list */
|
|
QgsFields& fields();
|
|
|
|
/** Set fields */
|
|
void setFields( const QgsFields & fields );
|
|
|
|
/** Get crs */
|
|
QgsCoordinateReferenceSystem crs() const;
|
|
|
|
/** Set crs */
|
|
void setCrs( const QgsCoordinateReferenceSystem& crs );
|
|
|
|
/** Get features list reference */
|
|
QgsFeatureList& features();
|
|
|
|
/** Set map of optional parameters */
|
|
void setParams( const QMap<QString, QVariant> &theParams );
|
|
|
|
/** Get map of optional parameters */
|
|
QMap<QString, QVariant> params() const;
|
|
};
|