mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
(cleanup) Delete an awful global variable (g_plugin in ConfigDiag). Rename the Plugin class in InputConfig to InputPlugin, which is better but not ideal.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5663 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
393aa36fc2
commit
caab5f62ad
7 changed files with 89 additions and 84 deletions
|
@ -30,12 +30,14 @@
|
|||
#include <map>
|
||||
#include <sstream>
|
||||
|
||||
class Plugin
|
||||
// InputPlugin isn't a very good name anymore since it's also used for GCPad which
|
||||
// will soon not even be a plugin anymore.
|
||||
class InputPlugin
|
||||
{
|
||||
public:
|
||||
|
||||
Plugin( const char* const _ini_name, const char* const _gui_name, const char* const _profile_name );
|
||||
~Plugin();
|
||||
InputPlugin( const char* const _ini_name, const char* const _gui_name, const char* const _profile_name );
|
||||
~InputPlugin();
|
||||
|
||||
bool LoadConfig();
|
||||
void SaveConfig();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue