Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
more doc fixes
  • Loading branch information
wonder-sk committed Jan 20, 2021
1 parent c639bc7 commit 669125c
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/core/qgstiledownloadmanager.h
Expand Up @@ -61,13 +61,13 @@ class CORE_EXPORT QgsTileDownloadManagerReply : public QObject
//! Returns the original request for this reply object
QNetworkRequest request() const { return mRequest; }

public slots:
void requestFinished( QByteArray data, QNetworkReply::NetworkError error, const QString &errorString );

signals:
//! Emitted when the reply has finished (either with a success or with a failure)
void finished();

private slots:
void requestFinished( QByteArray data, QNetworkReply::NetworkError error, const QString &errorString );

private:
QgsTileDownloadManagerReply( QgsTileDownloadManager *manager, const QNetworkRequest &request );

Expand Down Expand Up @@ -184,7 +184,6 @@ class QgsTileDownloadManagerWorker : public QObject
*/
class CORE_EXPORT QgsTileDownloadManager
{
public:

//! An entry in the queue of requests to be handled by this class
class QueueEntry
Expand All @@ -200,7 +199,13 @@ class CORE_EXPORT QgsTileDownloadManager
QNetworkReply *networkReply = nullptr;
};

//! Encapsulates any statistics we would like to keep about requests
public:

/**
* \ingroup core
* Encapsulates any statistics we would like to keep about requests
* \since QGIS 3.18
*/
class Stats
{
public:
Expand Down

0 comments on commit 669125c

Please sign in to comment.