yhkylin-backup-tools/kybackup/aboutdialog.h

26 lines
354 B
C
Raw Normal View History

2022-01-28 12:06:03 +08:00
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
#include <QDialog>
#include <QResizeEvent>
namespace Ui {
class AboutDialog;
}
class AboutDialog : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog();
QString getBackupVersion();
private:
Ui::AboutDialog *ui;
};
#endif // ABOUTDIALOG_H