mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-26 14:34:22 +00:00
19 lines
224 B
C++
19 lines
224 B
C++
#ifndef ABOUTDIALOG_H
|
|
#define ABOUTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class AboutDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AboutDialog(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // ABOUTDIALOG_H
|