change_code/src/pages/about/aboutpage.h

18 lines
241 B
C++

#ifndef ABOUTPAGE_H
#define ABOUTPAGE_H
#include <QWidget>
class AboutPage : public QWidget
{
Q_OBJECT
public:
explicit AboutPage(QWidget *parent = nullptr);
~AboutPage();
private:
void initUI();
};
#endif // ABOUTPAGE_H