Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Final fixes for tests
  • Loading branch information
wonder-sk committed Jul 24, 2016
1 parent b216138 commit 04ffd9e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion python/core/qgsfeedback.sip
@@ -1,5 +1,6 @@

/** Base class for feedback objects to be used for cancellation of something running in a worker thread.
/** \ingroup core
* Base class for feedback objects to be used for cancellation of something running in a worker thread.
*
* The class may be used as is or it may be subclassed for extended functionality
* for a particular operation (e.g. report progress or pass some data for preview).
Expand Down
6 changes: 4 additions & 2 deletions python/core/raster/qgsrasterinterface.sip
@@ -1,11 +1,13 @@

/** Feedback object tailored for raster block reading. */
/** \ingroup core
* Feedback object tailored for raster block reading.
*/
class QgsRasterBlockFeedback : QgsFeedback
{
%TypeHeaderCode
#include <qgsrasterinterface.h>
%End
// TODO: extend with preview functionality??
// TODO: extend with preview functionality??
};


Expand Down
3 changes: 2 additions & 1 deletion src/core/qgsfeedback.h
Expand Up @@ -18,7 +18,8 @@

#include <QObject>

/** Base class for feedback objects to be used for cancellation of something running in a worker thread.
/** \ingroup core
* Base class for feedback objects to be used for cancellation of something running in a worker thread.
*
* The class may be used as is or it may be subclassed for extended functionality
* for a particular operation (e.g. report progress or pass some data for preview).
Expand Down
6 changes: 4 additions & 2 deletions src/core/raster/qgsrasterinterface.h
Expand Up @@ -29,10 +29,12 @@
#include "qgsrasterhistogram.h"
#include "qgsrectangle.h"

/** Feedback object tailored for raster block reading. */
/** \ingroup core
* Feedback object tailored for raster block reading.
*/
class CORE_EXPORT QgsRasterBlockFeedback : public QgsFeedback
{
// TODO: extend with preview functionality??
// TODO: extend with preview functionality??
};


Expand Down

0 comments on commit 04ffd9e

Please sign in to comment.