dialogexportbatchset.h 529 B

123456789101112131415161718192021222324252627
  1. #ifndef DIALOGEXPORTBATCHSET_H
  2. #define DIALOGEXPORTBATCHSET_H
  3. #include <QDialog>
  4. #include <QtGui>
  5. namespace Ui {
  6. class DialogExportBatchSet;
  7. }
  8. class DialogExportBatchSet : public QDialog
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit DialogExportBatchSet(QWidget *parent = 0);
  13. int getBatch();
  14. bool getIsAll();
  15. ~DialogExportBatchSet();
  16. private slots:
  17. void on_quatityEdit_textChanged(const QString &arg1);
  18. private:
  19. Ui::DialogExportBatchSet *ui;
  20. };
  21. #endif // DIALOGEXPORTBATCHSET_H