mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
|
class QgsBilinearRasterResampler : QgsRasterResampler
|
||
|
{
|
||
|
%TypeHeaderCode
|
||
|
#include "qgsbilinearrasterresampler.h"
|
||
|
%End
|
||
|
public:
|
||
|
QgsBilinearRasterResampler();
|
||
|
~QgsBilinearRasterResampler();
|
||
|
|
||
|
void resample( const QImage& srcImage, QImage& dstImage );
|
||
|
QString type() const;
|
||
|
QgsRasterResampler * clone() const /Factory/;
|
||
|
};
|