dialogmffeequery.h 450 B

123456789101112131415161718192021222324
  1. #ifndef DIALOGMFFEEQUERY_H
  2. #define DIALOGMFFEEQUERY_H
  3. #include <QDialog>
  4. #include "formmffee.h"
  5. namespace Ui {
  6. class DialogMfFeeQuery;
  7. }
  8. class DialogMfFeeQuery : public QDialog
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit DialogMfFeeQuery(QWidget *parent = 0);
  13. void setUserHash(QString userHash);
  14. ~DialogMfFeeQuery();
  15. private:
  16. Ui::DialogMfFeeQuery *ui;
  17. FormMfFee formMfFee;
  18. };
  19. #endif // DIALOGMFFEEQUERY_H