00001 #ifndef CATCHMENTPOLYGON 00002 #define CATCHMENTPOLYGON 00003 00004 #include "ui_catchmentpolygon.h" 00005 #include <qgisapp.h> 00006 00007 class CatchmentPolygonDlg : public QDialog, private Ui::CatchmentPolygon 00008 { 00009 Q_OBJECT 00010 public: 00011 CatchmentPolygonDlg(QWidget *parent = 0); 00012 00013 void setApplicationPointer(QgisApp *); 00014 QgisApp* applicationPointer; 00015 00016 public slots: 00017 void inputBrowse(); 00018 void outputBrowse(); 00019 void run(); 00020 void help(); 00021 }; 00022 00023 #endif 00024