js8call/.svn/pristine/b0/b0723a693c24ac4be11493b9bc94ef84864c31e9.svn-base

24 lines
325 B
Plaintext
Raw Normal View History

2018-02-08 21:28:33 -05:00
// -*- Mode: C++ -*-
#ifndef ABOUTDLG_H
#define ABOUTDLG_H
#include <QDialog>
#include <QScopedPointer>
namespace Ui {
class CAboutDlg;
}
class CAboutDlg
: public QDialog
{
public:
explicit CAboutDlg(QWidget *parent = nullptr);
~CAboutDlg ();
private:
QScopedPointer<Ui::CAboutDlg> ui;
};
#endif // ABOUTDLG_H