mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
confusion when we will have other stuff with strategies. Also rename corresponding subclasses
14 lines
333 B
Plaintext
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;
|
|
};
|