mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
23 lines
397 B
Plaintext
23 lines
397 B
Plaintext
class QgsGml: QObject
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
#include <qgsgml.h>
|
|
%End
|
|
|
|
public:
|
|
|
|
QgsGml(
|
|
const QString& typeName,
|
|
const QString& geometryAttribute,
|
|
const QgsFields & fields );
|
|
|
|
~QgsGml();
|
|
|
|
/** Read from GML data. */
|
|
int getFeatures( const QByteArray &data, QGis::WkbType* wkbType, QgsRectangle* extent = 0 );
|
|
|
|
QMap<qint64, QgsFeature* > featuresMap() const;
|
|
|
|
};
|