24 lines
423 B
C
24 lines
423 B
C
|
#ifndef POINTER_REGISTRY_H
|
||
|
#define POINTER_REGISTRY_H
|
||
|
|
||
|
#include <unordered_map>
|
||
|
|
||
|
class PointerRegistry {
|
||
|
public:
|
||
|
static PointerRegistry* shared();
|
||
|
|
||
|
PointerRegistry();
|
||
|
|
||
|
int store(void* ptr);
|
||
|
void* fetch(int ref, bool remove = false);
|
||
|
|
||
|
private:
|
||
|
std::unordered_map<int, void*> _map;
|
||
|
int _next;
|
||
|
};
|
||
|
|
||
|
int ptrToInt(void* ptr);
|
||
|
void* intToPtr(int ref, bool remove = false);
|
||
|
|
||
|
#endif /* POINTER_REGISTRY_H */
|