mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-20 20:06:12 +00:00
26 lines
341 B
C
26 lines
341 B
C
|
#ifndef ABOUTDIALOG_H
|
||
|
#define ABOUTDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class AboutDialog;
|
||
|
}
|
||
|
|
||
|
class AboutDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AboutDialog(QWidget *parent = 0);
|
||
|
~AboutDialog();
|
||
|
|
||
|
private slots:
|
||
|
void on_buttonBox_rejected();
|
||
|
|
||
|
private:
|
||
|
Ui::AboutDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // ABOUTDIALOG_H
|