13 righe
190 B
C
13 righe
190 B
C
|
#ifndef ABOUTDIALOG_H
|
||
|
#define ABOUTDIALOG_H
|
||
|
#include <QDialog>
|
||
|
|
||
|
class AboutDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
AboutDialog(QWidget *parent = nullptr);
|
||
|
};
|
||
|
|
||
|
#endif // ABOUTDIALOG_H
|