argdialog.h 281 B

12345678910111213141516171819202122
  1. #ifndef ARGDIALOG_H
  2. #define ARGDIALOG_H
  3. #include <QDialog>
  4. namespace Ui {
  5. class ArgDialog;
  6. }
  7. class ArgDialog : public QDialog
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit ArgDialog(QWidget *parent = nullptr);
  12. ~ArgDialog();
  13. private:
  14. Ui::ArgDialog *ui;
  15. };
  16. #endif // ARGDIALOG_H