QGIS/python/core/qgsgml.sip

23 lines
397 B
Plaintext
Raw Normal View History

2013-03-26 14:15:12 +01:00
class QgsGml: QObject
{
%TypeHeaderCode
#include <qgsgml.h>
%End
public:
2013-03-26 14:15:12 +01:00
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;
};