mirror of
https://github.com/corda/corda.git
synced 2025-01-01 10:46:46 +00:00
28 lines
529 B
C++
28 lines
529 B
C++
#ifndef RUN_H
|
|
#define RUN_H
|
|
|
|
#include "system.h"
|
|
#include "heap.h"
|
|
#include "class-finder.h"
|
|
#include "machine.h"
|
|
|
|
namespace vm {
|
|
|
|
object
|
|
run(Thread* t, object method, object this_, ...);
|
|
|
|
object
|
|
run2(Thread* t, object method, object this_, object arguments);
|
|
|
|
object
|
|
run(Thread* t, const char* className, const char* methodName,
|
|
const char* methodSpec, object this_, ...);
|
|
|
|
int
|
|
run(System* sys, Heap* heap, ClassFinder* classFinder,
|
|
const char* className, int argc, const char** argv);
|
|
|
|
} // namespace vm
|
|
|
|
#endif//RUN_H
|