mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
23 lines
400 B
Plaintext
23 lines
400 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;
|
||
|
|
||
|
};
|