corda/src/vm.h

17 lines
242 B
C
Raw Normal View History

#ifndef VM_H
#define VM_H
#include "system.h"
#include "heap.h"
2007-06-25 02:02:24 +00:00
#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