QGIS/src/core/tiledmesh/qgstiledmeshrequest.cpp
2023-08-05 05:05:46 +10:00

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;
}