1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/analysis/network/qgsgraphdirector.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
%ModuleHeaderCode
#include <qgsvectorlayerdirector.h>
%End
class QgsGraphDirector : QObject
{
%Docstring(signature="appended")
Determine making the graph. :py:class:`QgsGraphBuilder` and
:py:class:`QgsGraphDirector` implemented using "builder" design patter.
%End
%TypeHeaderCode
#include "qgsgraphdirector.h"
%End
%ConvertToSubClassCode
if ( dynamic_cast<QgsVectorLayerDirector *>( sipCpp ) != NULL )
sipType = sipType_QgsVectorLayerDirector;
else
sipType = NULL;
%End
public:
~QgsGraphDirector();
virtual void makeGraph( QgsGraphBuilderInterface *builder, const QVector<QgsPointXY> &additionalPoints, QVector<QgsPointXY> &snappedPoints /Out/, QgsFeedback *feedback = 0 ) const;
%Docstring
Make a graph using :py:class:`QgsGraphBuilder`
:param builder: the graph builder
:param additionalPoints: list of points that should be snapped to the
graph
:param feedback: feedback object for reporting progress
.. note::
if snappedPoints[i] == QgsPointXY(0.0,0.0) then snapping failed.
:return: list of snapped points
%End
void addStrategy( QgsNetworkStrategy *prop /Transfer/ );
%Docstring
Add optimization strategy
%End
virtual QString name() const = 0;
%Docstring
Returns director name
%End
protected:
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/analysis/network/qgsgraphdirector.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|