Skip to content
Snippets Groups Projects
Commit 09d6d2f1 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

renamed Transform to Transform_t for consistency

parent dd1ec536
No related branches found
No related tags found
No related merge requests found
...@@ -25,12 +25,12 @@ namespace IRDB_SDK ...@@ -25,12 +25,12 @@ namespace IRDB_SDK
using namespace std; using namespace std;
class Transform class Transform_t
{ {
public: public:
Transform(FileIR_t * file); Transform_t(FileIR_t * file);
virtual ~Transform() { } virtual ~Transform_t() { }
Instruction_t* insertAssemblyBefore (Instruction_t* p_before, const string &p_asm, Instruction_t* p_targ=nullptr); Instruction_t* insertAssemblyBefore (Instruction_t* p_before, const string &p_asm, Instruction_t* p_targ=nullptr);
Instruction_t* insertAssemblyAfter (Instruction_t* p_after , const string &p_asm, Instruction_t* p_targ=nullptr); Instruction_t* insertAssemblyAfter (Instruction_t* p_after , const string &p_asm, Instruction_t* p_targ=nullptr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment