blob: 50465d8824f52f6c11342ea5466bdfa1d2d45d6e [file] [log] [blame]
package org.eclipse.ptp.debug.external.core.proxy.command;
import org.eclipse.ptp.core.proxy.IProxyClient;
import org.eclipse.ptp.core.util.BitList;
public class ProxyDebugTerminateCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugTerminateCommand(IProxyClient client, BitList procs) {
super(client, procs);
}
public int getCommandID() {
return TERMINATE;
}
}