summaryrefslogtreecommitdiff
path: root/ZeroTierUI/aboutwindow.h
blob: 6c883b9ba23100e85a955f9620022bdd3cbd881d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef AboutWindow_H
#define AboutWindow_H

#include <QDialog>

namespace Ui {
class AboutWindow;
}

class AboutWindow : public QDialog
{
	Q_OBJECT

public:
	explicit AboutWindow(QWidget *parent = 0);
	virtual ~AboutWindow();

private slots:
	void on_uninstallButton_clicked();

private:
	Ui::AboutWindow *ui;
};

#endif // AboutWindow_H