mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
bebc2ec36d
* Replace 0 and Q_NULLPTR with nullptr * Use c++11 foreach
30 lines
452 B
C++
30 lines
452 B
C++
#ifndef VERSIONINFODIALOG_H
|
|
#define VERSIONINFODIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <memory>
|
|
|
|
#include "Cutter.h"
|
|
|
|
namespace Ui {
|
|
class VersionInfoDialog;
|
|
}
|
|
|
|
class VersionInfoDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit VersionInfoDialog(QWidget *parent = nullptr);
|
|
~VersionInfoDialog();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::VersionInfoDialog> ui;
|
|
CutterCore *core;
|
|
|
|
void fillVersionInfo();
|
|
|
|
};
|
|
|
|
#endif // VERSIONINFODIALOG_H
|