summaryrefslogtreecommitdiff
path: root/src/ui/aboutdialog.h
blob: e47297e9987bb11403ce64b54c52bffde8788be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: GPL-2.0-or-later

#ifndef FQTERM_ABOUT_DIALOG_H
#define FQTERM_ABOUT_DIALOG_H

#include "ui_aboutdialog.h"

namespace FQTerm {

class aboutDialog: public QDialog {
  Q_OBJECT;
 public:
  aboutDialog(QWidget *parent = 0, Qt::WindowFlags fl = 0);
  ~aboutDialog();
 private:
  Ui::aboutDialog ui_;
};

}  // namespace FQTerm

#endif  // FQTERM_ABOUT_DIALOG_H