mirror of
https://github.com/alee14-projects/AleeBrowser.git
synced 2025-01-22 07:53:18 -05:00
22 lines
249 B
C++
22 lines
249 B
C++
#ifndef ABOUT_H
|
|
#define ABOUT_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class About;
|
|
}
|
|
|
|
class About : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit About(QWidget *parent = nullptr);
|
|
~About();
|
|
|
|
private:
|
|
Ui::About *ui;
|
|
};
|
|
|
|
#endif // ABOUT_H
|