| 123456789101112131415161718192021222324252627 |
- #ifndef DIALOGEXPORTBATCHSET_H
- #define DIALOGEXPORTBATCHSET_H
- #include <QDialog>
- #include <QtGui>
- namespace Ui {
- class DialogExportBatchSet;
- }
- class DialogExportBatchSet : public QDialog
- {
- Q_OBJECT
-
- public:
- explicit DialogExportBatchSet(QWidget *parent = 0);
- int getBatch();
- bool getIsAll();
- ~DialogExportBatchSet();
-
- private slots:
- void on_quatityEdit_textChanged(const QString &arg1);
- private:
- Ui::DialogExportBatchSet *ui;
- };
- #endif // DIALOGEXPORTBATCHSET_H
|