blob: 90573aafd80603333143fa699e302dd6867a47c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2020 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <QDialog>
#include <QWidget>
class NKitWarningDialog final : public QDialog
{
Q_OBJECT
public:
static bool ShowUnlessDisabled(QWidget* parent = nullptr);
private:
explicit NKitWarningDialog(QWidget* parent = nullptr);
};
|