dialogtoday.h 434 B

1234567891011121314151617181920212223242526
  1. #ifndef DIALOGTODAY_H
  2. #define DIALOGTODAY_H
  3. #include <QDialog>
  4. #include "formrec.h"
  5. namespace Ui {
  6. class DialogToday;
  7. }
  8. class DialogToday : public QDialog
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit DialogToday(QWidget *parent = 0);
  13. ~DialogToday();
  14. public slots:
  15. void setAccountInfo(QMap<QString,QString> info);
  16. private:
  17. Ui::DialogToday *ui;
  18. FormRec *m_form;
  19. };
  20. #endif // DIALOGTODAY_H