19 lines
284 B
C
19 lines
284 B
C
|
#ifndef ABOUTDIALOG_H
|
||
|
#define ABOUTDIALOG_H
|
||
|
|
||
|
#include "kaboutdialog.h"
|
||
|
|
||
|
class AboutDialog : public kdk::KAboutDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AboutDialog(QWidget *parent = nullptr);
|
||
|
~AboutDialog();
|
||
|
|
||
|
private:
|
||
|
QString getBackupVersion();
|
||
|
};
|
||
|
|
||
|
#endif // ABOUTDIALOG_H
|