inital commit of the tester

This commit is contained in:
2017-12-27 13:47:10 +01:00
parent c7b6246025
commit 3d1dddba12
9 changed files with 136 additions and 4 deletions

17
tester/abstracthook.h Normal file
View 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_;
}
};