This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ZeroTierUI/aboutwindow.h

26 lines
331 B
C
Raw Normal View History

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