mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 00:59:11 +01:00
2742be1c2e
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5268 8ced0084-cf51-0410-be5f-012b33b47a6e
37 lines
652 B
C++
37 lines
652 B
C++
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
#define CONFIG_FILE_NAME "GCPadNew.ini"
|
|
|
|
#include "ControllerInterface/ControllerInterface.h"
|
|
#include "Thread.h"
|
|
#include "FileUtil.h"
|
|
#include "IniFile.h"
|
|
|
|
#include "ControllerEmu.h"
|
|
#include "ControllerEmu/GCPad/GCPad.h"
|
|
#include "ControllerEmu/Wiimote/Wiimote.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <sstream>
|
|
|
|
class Plugin
|
|
{
|
|
public:
|
|
|
|
Plugin();
|
|
~Plugin();
|
|
|
|
void LoadConfig();
|
|
void SaveConfig();
|
|
|
|
std::vector< ControllerEmu* > controllers;
|
|
|
|
Common::CriticalSection controls_crit, interface_crit; // lock controls first
|
|
ControllerInterface controller_interface;
|
|
};
|
|
|
|
#endif
|