Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c297647e674d46b476055bcc43395aae7c5eb814 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *(c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 * 
 */

package org.eclipse.cdt.debug.mi.core.command;

/**
 * 
 *      -exec-continue
 * 
 *   Asynchronous command.  Resumes the execution of the inferior program
 *   until a breakpoint is encountered, or until the inferior exits.
 * 
 */
public class MIExecContinue extends MICommand 
{
	public MIExecContinue() {
		super("-exec-continue"); //$NON-NLS-1$
	}
}

Back to the top