mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Changed macro for disallowing copy-ctor and =operator into an inheritable class. Removed IrPointer.ini (no longer used)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6421 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -39,7 +39,7 @@ enum INTERFACE_LANGUAGE
|
||||
INTERFACE_OTHER,
|
||||
};
|
||||
|
||||
struct SConfig
|
||||
struct SConfig : NonCopyable
|
||||
{
|
||||
// Wii Devices
|
||||
bool m_WiiSDCard;
|
||||
@ -111,8 +111,6 @@ private:
|
||||
~SConfig();
|
||||
|
||||
static SConfig* m_Instance;
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(SConfig);
|
||||
};
|
||||
|
||||
#endif // endif config manager
|
||||
|
@ -40,7 +40,7 @@ private:
|
||||
typedef std::vector<CPluginInfo>CPluginInfos;
|
||||
|
||||
|
||||
class CPluginManager
|
||||
class CPluginManager : NonCopyable
|
||||
{
|
||||
public:
|
||||
static CPluginManager& GetInstance() {return(*m_Instance);}
|
||||
@ -78,8 +78,6 @@ private:
|
||||
~CPluginManager();
|
||||
void GetPluginInfo(CPluginInfo *&info, std::string Filename);
|
||||
void *LoadPlugin(const char *_rFilename);
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(CPluginManager);
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user