#ifndef COMPILER_GENERATOR_H_INCLUDED #define COMPILER_GENERATOR_H_INCLUDED #include #include namespace Compiler { class Literals; namespace Generator { typedef std::vector CodeContainer; void assignIntToLocal (CodeContainer& code, Literals& literals, char localType, int localIndex, int value); } } #endif