예제 #1
0
파일: Main.cpp 프로젝트: ldaniels528/cortex
/**
 * Debugs the given SVM class
 * @param argc the given number of arguments
 * @param argv the given arguments
 */
int Main::debug( int argc, char* argv[] ) {
	// cache the class name
	const char* classname = argv[2];

	// startup the virtual machine
	Debugger *debugger = new Debugger();

	// execute/debug the class
	return debugger->debug( classname, argc, argv );
}