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