mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
29 lines
No EOL
444 B
C++
29 lines
No EOL
444 B
C++
#ifndef __INCLUDED_HOOK_BASE_H__
|
|
#define __INCLUDED_HOOK_BASE_H__
|
|
|
|
#include "Base_Hook.h"
|
|
|
|
#ifndef NO_OVERLAY
|
|
|
|
#include <set>
|
|
|
|
class Hook_Manager
|
|
{
|
|
friend class Base_Hook;
|
|
|
|
protected:
|
|
std::set<Base_Hook*> _hooks;
|
|
|
|
Hook_Manager();
|
|
virtual ~Hook_Manager();
|
|
|
|
public:
|
|
static Hook_Manager& Inst();
|
|
|
|
void AddHook(Base_Hook* hook);
|
|
void RemoveHook(Base_Hook* hook);
|
|
};
|
|
|
|
#endif//NO_OVERLAY
|
|
|
|
#endif//__INCLUDED_HOOK_BASE_H__
|