| 1234567891011121314151617181920212223242526 |
- #ifndef DIALOGTODAY_H
- #define DIALOGTODAY_H
- #include <QDialog>
- #include "formrec.h"
- namespace Ui {
- class DialogToday;
- }
- class DialogToday : public QDialog
- {
- Q_OBJECT
-
- public:
- explicit DialogToday(QWidget *parent = 0);
- ~DialogToday();
- public slots:
- void setAccountInfo(QMap<QString,QString> info);
-
- private:
- Ui::DialogToday *ui;
- FormRec *m_form;
- };
- #endif // DIALOGTODAY_H
|