#pragma once #include namespace theo::obf { class next_inst_pass_t : public pass_t { explicit next_inst_pass_t() : pass_t(decomp::sym_type_t::inst_split){}; public: static next_inst_pass_t* get() { static next_inst_pass_t obj; return &obj; } void run(decomp::symbol_t* sym){}; }; } // namespace theo::comp::obf