summaryrefslogblamecommitdiffstats
path: root/src/citra_qt/configure_general.h
blob: a6c68e62d5ff98ca3261fc07a2e520fc88e61979 (plain) (tree)
1
2
3
4
5
6
7



                                            
            
 
                 










                                       
                                                         







                              
                                             
  
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <memory>
#include <QWidget>

namespace Ui {
class ConfigureGeneral;
}

class ConfigureGeneral : public QWidget
{
    Q_OBJECT

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

    void applyConfiguration();

private:
    void setConfiguration();

private:
    std::unique_ptr<Ui::ConfigureGeneral> ui;
};