summaryrefslogtreecommitdiff
path: root/src/yuzu/compatdb.h
blob: ca0dd11d6105e115c1acff915e9c7719624ce76e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <memory>
#include <QWizard>

namespace Ui {
class CompatDB;
}

class CompatDB : public QWizard {
    Q_OBJECT

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

private:
    std::unique_ptr<Ui::CompatDB> ui;

    void Submit();
    void EnableNext();
};