mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
15 lines
298 B
C++
15 lines
298 B
C++
#ifndef DOLPHIN_HANDLER_HPP_
|
|
#define DOLPHIN_HANDLER_HPP_
|
|
|
|
#include "wild_handler.hpp"
|
|
|
|
class dolphin_handler : public wild_handler
|
|
{
|
|
public:
|
|
dolphin_handler(uint16_t index);
|
|
|
|
private:
|
|
bool map_handler_specific(instruction_container& instructions, wild_context& context);
|
|
};
|
|
|
|
#endif |