1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef NEWSEQUENZ_H
- #define NEWSEQUENZ_H
- #include <QDialog>
- namespace Ui {
- class NewSequenz;
- }
- class NewSequenz : public QDialog
- {
- Q_OBJECT
- public:
- explicit NewSequenz( int max, QWidget *parent = 0);
- ~NewSequenz();
-
- int getOffset() const;
-
- int getLimit() const;
- private slots:
-
- void on_ok_clicked();
-
- void on_abbrechen_clicked();
- private:
- Ui::NewSequenz *ui;
- int offset;
- int limit;
- };
- #endif
|