inital commit of the tester
This commit is contained in:
17
tester/abstracthook.h
Normal file
17
tester/abstracthook.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
class AbstractHookEngine {
|
||||
private:
|
||||
const char* name_;
|
||||
public:
|
||||
AbstractHookEngine(const char* name) : name_(name) {
|
||||
|
||||
}
|
||||
|
||||
virtual bool hook_all() = 0;
|
||||
virtual bool unhook_all() = 0;
|
||||
virtual bool all_hooked() = 0;
|
||||
|
||||
const char* name() {
|
||||
return name_;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user