Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgspointlocatorinittask.cpp 3 : : -------------------------------------- 4 : : Date : September 2019 5 : : Copyright : (C) 2019 by Julien Cabieces 6 : : Email : julien dot cabieces at oslandia dot com 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 "qgspointlocatorinittask.h" 17 : : #include "qgspointlocator.h" 18 : : #include "qgsvectorlayer.h" 19 : : 20 : : /// @cond PRIVATE 21 : : 22 : 0 : QgsPointLocatorInitTask::QgsPointLocatorInitTask( QgsPointLocator *loc ) 23 : 0 : : QgsTask( tr( "Indexing %1" ).arg( loc->layer()->id() ), QgsTask::Flags() ) 24 : 0 : , mLoc( loc ) 25 : 0 : {} 26 : : 27 : 0 : bool QgsPointLocatorInitTask::isBuildOK() const 28 : : { 29 : 0 : return mBuildOK; 30 : : } 31 : : 32 : 0 : bool QgsPointLocatorInitTask::run() 33 : : { 34 : 0 : mBuildOK = mLoc->rebuildIndex(); 35 : 0 : return true; 36 : : } 37 : : 38 : : /// @endcond