blob: 8ff6b0c9a001c95d66565b79e65bd139f5a911d8 [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 ProxyDebugListLocalVariablesCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugListLocalVariablesCommand(IProxyClient client, BitList procs) {
super(client, procs);
}
public int getCommandID() {
return LISTLOCALVARIABLES;
}
}