mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 06:17:48 +00:00
28 lines
374 B
C
28 lines
374 B
C
|
#ifndef LICENSEDIALOG_H
|
||
|
#define LICENSEDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class LicenseDialog;
|
||
|
}
|
||
|
|
||
|
class LicenseDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit LicenseDialog(QWidget *parent = 0);
|
||
|
~LicenseDialog();
|
||
|
|
||
|
private slots:
|
||
|
void on_buttonBox_accepted();
|
||
|
|
||
|
void on_buttonBox_rejected();
|
||
|
|
||
|
private:
|
||
|
Ui::LicenseDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // LICENSEDIALOG_H
|