| 123456789101112131415161718192021222324 |
- #ifndef DIALOGMFFEEQUERY_H
- #define DIALOGMFFEEQUERY_H
- #include <QDialog>
- #include "formmffee.h"
- namespace Ui {
- class DialogMfFeeQuery;
- }
- class DialogMfFeeQuery : public QDialog
- {
- Q_OBJECT
-
- public:
- explicit DialogMfFeeQuery(QWidget *parent = 0);
- void setUserHash(QString userHash);
- ~DialogMfFeeQuery();
-
- private:
- Ui::DialogMfFeeQuery *ui;
- FormMfFee formMfFee;
- };
- #endif // DIALOGMFFEEQUERY_H
|