blob: b542dc5159d78b7602e4b38d23687d7873d05fab [file] [log] [blame]
package org.eclipse.ptp.proxy.debug.command;
public class ProxyDebugStepCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugStepCommand(String bits,
int count, int type) {
super(STEP, bits);
addArgument(count);
addArgument(type);
}
public ProxyDebugStepCommand(int transID, String[] args) {
super(STEP, transID, args);
}
}