-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqgsgeorefwarpoptionsdialog.h
34 lines (27 loc) · 1.34 KB
/
qgsgeorefwarpoptionsdialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/***************************************************************************
* Copyright (C) 2003 by Tim Sutton *
* *
* This is a plugin generated from the QGIS plugin template *
* *
* 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. *
***************************************************************************/
/* $Id$ */
#ifndef QGSGEOREFWARPOPTIONSDIALOG_H
#define QGSGEOREFWARPOPTIONSDIALOG_H
#include <cstdio>
#include "qgsimagewarper.h"
#include "ui_qgsgeorefwarpoptionsdialogbase.h"
#include <QDialog>
class QgsGeorefWarpOptionsDialog : public QDialog, private Ui::QgsGeorefWarpOptionsDialogBase
{
Q_OBJECT
public:
QgsGeorefWarpOptionsDialog( QWidget* parent );
void getWarpOptions( QgsImageWarper::ResamplingMethod& resampling,
bool& useZeroForTransparency, QString& compression );
};
#endif