Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgraphbuilderinterface.cpp 3 : : -------------------------------------- 4 : : Date : 2018-10-08 5 : : Copyright : (C) 2018 Denis Rouzaud 6 : : Email : denis@opengis.ch 7 : : **************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgsgraphbuilderinterface.h" 17 : : 18 : : #include "qgsproject.h" 19 : : 20 : 0 : QgsGraphBuilderInterface::QgsGraphBuilderInterface( const QgsCoordinateReferenceSystem &crs, bool ctfEnabled, 21 : : double topologyTolerance, const QString &ellipsoidID ) 22 : 0 : : mCrs( crs ) 23 : 0 : , mCtfEnabled( ctfEnabled ) 24 : 0 : , mTopologyTolerance( topologyTolerance ) 25 : 0 : { 26 : 0 : mDa.setSourceCrs( mCrs, QgsProject::instance()->transformContext() ); 27 : 0 : mDa.setEllipsoid( ellipsoidID ); 28 : 0 : } 29 : : 30 : 0 : void QgsGraphBuilderInterface::addVertex( int id, const QgsPointXY &pt ) 31 : : { 32 : : Q_UNUSED( id ) 33 : 0 : Q_UNUSED( pt ) 34 : 0 : } 35 : : 36 : 0 : void QgsGraphBuilderInterface::addEdge( int pt1id, const QgsPointXY &pt1, 37 : : int pt2id, const QgsPointXY &pt2, 38 : : const QVector<QVariant> &strategies ) 39 : : { 40 : : Q_UNUSED( pt1id ) 41 : 0 : Q_UNUSED( pt1 ) 42 : : Q_UNUSED( pt2id ) 43 : 0 : Q_UNUSED( pt2 ) 44 : 0 : Q_UNUSED( strategies ) 45 : 0 : }