mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-20 22:09:40 +00:00
22 lines
430 B
C++
22 lines
430 B
C++
#ifndef COMPILER_GENERATOR_H_INCLUDED
|
|
#define COMPILER_GENERATOR_H_INCLUDED
|
|
|
|
#include <vector>
|
|
|
|
#include <components/interpreter/types.hpp>
|
|
|
|
namespace Compiler
|
|
{
|
|
class Literals;
|
|
|
|
namespace Generator
|
|
{
|
|
typedef std::vector<Interpreter::Type_Code> CodeContainer;
|
|
|
|
void assignIntToLocal (CodeContainer& code, Literals& literals, char localType,
|
|
int localIndex, int value);
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|