mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-10 23:12:39 +00:00
26 lines
331 B
C++
26 lines
331 B
C++
#ifndef AboutWindow_H
|
|
#define AboutWindow_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AboutWindow;
|
|
}
|
|
|
|
class AboutWindow : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutWindow(QWidget *parent = 0);
|
|
~AboutWindow();
|
|
|
|
private slots:
|
|
void on_uninstallButton_clicked();
|
|
|
|
private:
|
|
Ui::AboutWindow *ui;
|
|
};
|
|
|
|
#endif // AboutWindow_H
|