mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
21 lines
344 B
Plaintext
21 lines
344 B
Plaintext
|
|
/** Raster checker for tests in python */
|
|
|
|
class QgsRasterChecker
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsrasterchecker.h>
|
|
%End
|
|
public:
|
|
|
|
QgsRasterChecker();
|
|
|
|
~QgsRasterChecker();
|
|
|
|
QString report();
|
|
|
|
bool runTest( QString theVerifiedKey, QString theVerifiedUri,
|
|
QString theExpectedKey, QString theExpectedUri );
|
|
};
|
|
|