This reverts commit 6280d9fb0184275843a8f4406c7293e41e65a639, reversing changes made to 3c9c8b8c6a2b2e7430ff09efdc2cc0c1996b16ca.
39 lines
546 B
C++
39 lines
546 B
C++
#ifndef ABOUTWINDOW_H
|
|
#define ABOUTWINDOW_H
|
|
|
|
/// \cond
|
|
// C headers
|
|
// C++ headers
|
|
// 3rd party headers
|
|
#include <QDialog>
|
|
/// \endcond
|
|
|
|
// qtrocket headers
|
|
|
|
namespace Ui {
|
|
class AboutWindow;
|
|
}
|
|
|
|
/**
|
|
* @brief The AboutWindow class
|
|
*
|
|
* The AboutWindow just displays some copyright information.
|
|
*
|
|
*/
|
|
class AboutWindow : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutWindow(QWidget *parent = nullptr);
|
|
~AboutWindow();
|
|
|
|
private slots:
|
|
void onButton_okButton_clicked();
|
|
|
|
private:
|
|
Ui::AboutWindow *ui;
|
|
};
|
|
|
|
#endif // ABOUTWINDOW_H
|