summaryrefslogtreecommitdiff
path: root/util/coreboot-configurator/src/application/AboutDialog.h
blob: 7a3123335de5cccb6dc28e5b2d236060bcb93c73 (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-only */

#pragma once

#include <QDialog>

namespace Ui {
class AboutDialog;
}

class AboutDialog : public QDialog
{
	Q_OBJECT

public:
	explicit AboutDialog(QWidget *parent = nullptr);
	~AboutDialog();

private:
	Ui::AboutDialog *ui;
};