19 lines
253 B
C++
19 lines
253 B
C++
#ifndef ABOUTWIDGET_H
|
|
#define ABOUTWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QLabel>
|
|
|
|
class AboutWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutWidget(QWidget *parent = nullptr);
|
|
|
|
private:
|
|
void setupUI();
|
|
};
|
|
|
|
#endif // ABOUTWIDGET_H
|