32 lines
		
	
	
		
			614 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			614 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2019 yuzu Emulator Project
 | 
						|
// Licensed under GPLv2 or any later version
 | 
						|
// Refer to the license.txt file included.
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <memory>
 | 
						|
#include <QFutureWatcher>
 | 
						|
#include <QWidget>
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class ConfigureNetwork;
 | 
						|
}
 | 
						|
 | 
						|
class ConfigureNetwork : public QWidget {
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
    explicit ConfigureNetwork(const Core::System& system_, QWidget* parent = nullptr);
 | 
						|
    ~ConfigureNetwork() override;
 | 
						|
 | 
						|
    void ApplyConfiguration();
 | 
						|
    void RetranslateUi();
 | 
						|
 | 
						|
private:
 | 
						|
    void SetConfiguration();
 | 
						|
 | 
						|
    std::unique_ptr<Ui::ConfigureNetwork> ui;
 | 
						|
 | 
						|
    const Core::System& system;
 | 
						|
};
 |