JS8Call-Improved master
Loading...
Searching...
No Matches
About.h
1// -*- Mode: C++ -*-
2#ifndef ABOUTDLG_H
3#define ABOUTDLG_H
4
5#include <QDialog>
6#include <QScopedPointer>
7
8namespace Ui {
9class CAboutDlg;
10}
11
12class CAboutDlg : public QDialog {
13 public:
14 explicit CAboutDlg(QWidget *parent = nullptr);
15 ~CAboutDlg();
16
17 private:
18 QScopedPointer<Ui::CAboutDlg> ui;
19};
20
21#endif // ABOUTDLG_H