blob: 976508e2c9792975a4440f10b22cadb287cfa080 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.command;
/**
*
* -gdb-set stop-on-solib-events
*
* Set an internal GDB variable.
*
*/
public class MIGDBSetStopOnSolibEvents extends MIGDBSet {
public MIGDBSetStopOnSolibEvents(boolean isSet) {
super(new String[] {"stop-on-solib-events", (isSet) ? "1" : "0"});
}
}