mirror of
https://github.com/corda/corda.git
synced 2025-01-28 23:24:29 +00:00
17 lines
242 B
C++
17 lines
242 B
C++
#ifndef VM_H
|
|
#define VM_H
|
|
|
|
#include "system.h"
|
|
#include "heap.h"
|
|
#include "class_finder.h"
|
|
|
|
namespace vm {
|
|
|
|
void
|
|
run(System* sys, Heap* heap, ClassFinder* classFinder,
|
|
const char* className, int argc, const char** argv);
|
|
|
|
}
|
|
|
|
#endif//VM_H
|