ZeroTierOne/ZeroTierUI/aboutwindow.h

26 lines
339 B
C
Raw Normal View History

2013-11-15 22:04:32 +00:00
#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();
2013-11-15 22:04:32 +00:00
private slots:
void on_uninstallButton_clicked();
private:
Ui::AboutWindow *ui;
};
#endif // AboutWindow_H