transmission/qt/LicenseDialog.h

26 lines
462 B
C
Raw Normal View History

2009-05-08 18:52:06 +00:00
/*
* This file Copyright (C) 2009-2015 Mnemosyne LLC
2009-05-08 18:52:06 +00:00
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
2009-05-08 18:52:06 +00:00
*
*/
#pragma once
2009-05-08 18:52:06 +00:00
#include "BaseDialog.h"
#include "Macros.h"
#include "ui_LicenseDialog.h"
class LicenseDialog : public BaseDialog
2009-05-08 18:52:06 +00:00
{
Q_OBJECT
TR_DISABLE_COPY_MOVE(LicenseDialog)
2009-05-08 18:52:06 +00:00
public:
explicit LicenseDialog(QWidget* parent = nullptr);
private:
Ui::LicenseDialog ui_ = {};
2009-05-08 18:52:06 +00:00
};