22 lines
218 B
C++
22 lines
218 B
C++
#pragma once
|
|
|
|
#include "InterpreterDefs.h"
|
|
|
|
namespace hybridclr
|
|
{
|
|
|
|
namespace interpreter
|
|
{
|
|
|
|
class Interpreter
|
|
{
|
|
public:
|
|
|
|
static void Execute(const MethodInfo* methodInfo, StackObject* args, void* ret);
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
|