mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-17 00:05:41 -05:00
31 lines
1.2 KiB
C++
31 lines
1.2 KiB
C++
/***************************************************************************
|
|
qgstiledmeshrequest.cpp
|
|
--------------------
|
|
begin : June 2023
|
|
copyright : (C) 2023 by Nyall Dawson
|
|
email : nyall dot dawson at gmail dot com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "qgstiledmeshrequest.h"
|
|
|
|
QgsTiledMeshRequest::QgsTiledMeshRequest() = default;
|
|
|
|
void QgsTiledMeshRequest::setFeedback( QgsFeedback *feedback )
|
|
{
|
|
mFeedback = feedback;
|
|
}
|
|
|
|
QgsFeedback *QgsTiledMeshRequest::feedback() const
|
|
{
|
|
return mFeedback;
|
|
}
|