Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgraphbuilder.cpp 3 : : -------------------------------------- 4 : : Date : 2010-10-25 5 : : Copyright : (C) 2010 by Yakushev Sergey 6 : : Email : YakushevS@list.ru 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 : : /** 17 : : * \file qgsgraphbuilder.cpp 18 : : * \brief implementation of the QgsGraphBuilder 19 : : */ 20 : : 21 : : #include "qgsgraphbuilder.h" 22 : : #include "qgsgraph.h" 23 : : 24 : : #include "qgsgeometry.h" 25 : : 26 : 0 : QgsGraphBuilder::QgsGraphBuilder( const QgsCoordinateReferenceSystem &crs, bool otfEnabled, double topologyTolerance, const QString &ellipsoidID ) 27 : 0 : : QgsGraphBuilderInterface( crs, otfEnabled, topologyTolerance, ellipsoidID ) 28 : 0 : { 29 : 0 : mGraph = new QgsGraph(); 30 : 0 : } 31 : : 32 : 0 : QgsGraphBuilder::~QgsGraphBuilder() 33 : 0 : { 34 : 0 : delete mGraph; 35 : 0 : } 36 : : 37 : 0 : void QgsGraphBuilder::addVertex( int, const QgsPointXY &pt ) 38 : : { 39 : 0 : mGraph->addVertex( pt ); 40 : 0 : } 41 : : 42 : 0 : void QgsGraphBuilder::addEdge( int pt1id, const QgsPointXY &, int pt2id, const QgsPointXY &, const QVector< QVariant > &prop ) 43 : : { 44 : 0 : mGraph->addEdge( pt1id, pt2id, prop ); 45 : 0 : } 46 : : 47 : 0 : QgsGraph *QgsGraphBuilder::graph() 48 : : { 49 : 0 : QgsGraph *res = mGraph; 50 : 0 : mGraph = nullptr; 51 : 0 : return res; 52 : : }