mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-03 00:05:24 -04:00
15 lines
375 B
Plaintext
15 lines
375 B
Plaintext
class QgsLUDialog: QDialog
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsludialog.h>
|
|
%End
|
|
|
|
public:
|
|
QgsLUDialog( QWidget *parent /TransferThis/ = 0, const Qt::WindowFlags &fl = QgisGui::ModalDialogFlags );
|
|
~QgsLUDialog();
|
|
QString lowerValue() const;
|
|
void setLowerValue( const QString &val );
|
|
QString upperValue() const;
|
|
void setUpperValue( const QString &val );
|
|
};
|