InputCommon: Rename class InputPlugin to InputConfig

This commit is contained in:
Lioncash
2014-08-31 00:04:15 -04:00
parent ea7eee1f58
commit 1a3ebbb831
12 changed files with 85 additions and 88 deletions

View File

@ -14,17 +14,14 @@
#include "InputCommon/ControllerEmu.h"
#include "InputCommon/ControllerInterface/ControllerInterface.h"
// InputPlugin isn't a very good name anymore since it's used by GCPad/Wiimote
// which are not even plugins anymore.
class InputPlugin
class InputConfig
{
public:
InputPlugin(const char* const _ini_name, const char* const _gui_name,
InputConfig(const char* const _ini_name, const char* const _gui_name,
const char* const _profile_name)
: ini_name(_ini_name), gui_name(_gui_name), profile_name(_profile_name) {}
~InputPlugin();
~InputConfig();
bool LoadConfig(bool isGC);
void SaveConfig();