QGIS/python/analysis/vector/qgspointsample.sip
Nyall Dawson 24d9c65494 Fix more classes which violate the rule-of-three
Also remove some empty destructors
2016-01-26 14:24:45 +11:00

16 lines
403 B
Plaintext

/** \ingroup analysis
*/
class QgsPointSample
{
%TypeHeaderCode
#include <qgspointsample.h>
%End
public:
QgsPointSample( QgsVectorLayer* inputLayer, const QString& outputLayer, const QString& nPointsAttribute, const QString& minDistAttribute = QString() );
/** Starts calculation of random points
@return 0 in case of success*/
int createRandomPoints( QProgressDialog* pd );
};