File indexing completed on 2024-04-28 15:16:07

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2012, 2013 Bernhard Beschow <bbeschow@cs.tu-berlin.de>
0004 
0005 #include "SearchRunner.h"
0006 
0007 namespace Marble
0008 {
0009 
0010 SearchRunner::SearchRunner( QObject *parent ) :
0011     QObject( parent )
0012 {
0013 }
0014 
0015 void SearchRunner::setModel( const MarbleModel *model )
0016 {
0017     m_model = model;
0018 }
0019 
0020 const MarbleModel *SearchRunner::model() const
0021 {
0022     return m_model;
0023 }
0024 
0025 }
0026 
0027 #include "moc_SearchRunner.cpp"