17 lines
434 B
C++
17 lines
434 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "DolphinWX/Input/InputConfigDiag.h"
|
|
|
|
class wxComboBox;
|
|
|
|
class ClassicInputConfigDialog final : public InputConfigDialog
|
|
{
|
|
public:
|
|
ClassicInputConfigDialog(wxWindow* parent, InputConfig& config, const wxString& name,
|
|
wxComboBox* device_cbox_parent, int port_num = 0);
|
|
};
|