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