QGIS/python/analysis/qgsoverlayanalyzer.sip

20 lines
495 B
Plaintext
Raw Normal View History

/** \ingroup analysis
* The QGis class provides vector geometry analysis functions
*/
class QgsOverlayAnalyzer
{
%TypeHeaderCode
#include <qgsoverlayanalyzer.h>
%End
public:
/**Perform an intersection on two input vector layers and write output to a new shape file
*/
bool intersection( QgsVectorLayer* layerA, QgsVectorLayer* layerB,
const QString& shapefileName, bool onlySelectedFeatures = false,
QProgressDialog* p = 0 );
};