mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-20 13:33:07 +00:00
23 lines
287 B
C++
23 lines
287 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);
|
|
virtual ~AboutWindow();
|
|
|
|
private:
|
|
Ui::AboutWindow *ui;
|
|
};
|
|
|
|
#endif // AboutWindow_H
|