mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-20 13:33:07 +00:00
18 lines
266 B
C++
18 lines
266 B
C++
#include "aboutwindow.h"
|
|
#include "ui_aboutwindow.h"
|
|
|
|
#include <QMessageBox>
|
|
#include "../node/Defaults.hpp"
|
|
|
|
AboutWindow::AboutWindow(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::AboutWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
AboutWindow::~AboutWindow()
|
|
{
|
|
delete ui;
|
|
}
|