123456789101112131415161718192021 |
- #ifndef DIALOGAPPVERSION_H
- #define DIALOGAPPVERSION_H
- #include <QDialog>
- class TextEdit;
- class DialogAppVersion : public QDialog
- {
- Q_OBJECT
- public:
- explicit DialogAppVersion(QString contentPath, QString titleText="", QWidget *parent = 0);
- ~DialogAppVersion();
- private:
- TextEdit *textViewer;
- };
- #endif // DIALOGAPPVERSION_H
|