QGIS/python/analysis/network/qgsnetworkspeedstrategy.sip
Alexander Bruy a61e8bbdec rename QgsStrategy to QgsNetworkStrategy to avoid possible future
confusion when we will have other stuff with strategies. Also
rename corresponding subclasses
2016-11-21 16:47:24 +02:00

14 lines
333 B
Plaintext

class QgsNetworkSpeedStrategy : QgsNetworkStrategy
{
%TypeHeaderCode
#include <qgsnetworkspeedstrategy.h>
%End
public:
QgsNetworkSpeedStrategy( int attributeId, double defaultValue, double toMetricFactor );
QVariant cost( double distance, const QgsFeature& f ) const;
QgsAttributeList requiredAttributes() const;
};