corda/src/vm.h
2007-06-19 20:28:31 -06:00

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