dialogappversion.h 345 B

123456789101112131415161718192021
  1. #ifndef DIALOGAPPVERSION_H
  2. #define DIALOGAPPVERSION_H
  3. #include <QDialog>
  4. class TextEdit;
  5. class DialogAppVersion : public QDialog
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit DialogAppVersion(QString contentPath, QString titleText="", QWidget *parent = 0);
  10. ~DialogAppVersion();
  11. private:
  12. TextEdit *textViewer;
  13. };
  14. #endif // DIALOGAPPVERSION_H