blob: 9d71a839ced5b9c8a1b867069633aec383ed84e1 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.command;
/**
*
* -exec-finish
*
* Asynchronous command. Resumes the execution of the inferior program
* until the current function is exited. Displays the results returned by
* the function.
*
*/
public class MIExecFinish extends MICommand
{
public MIExecFinish() {
super("-exec-finish");
}
}