Skip to main content
summaryrefslogtreecommitdiffstats
blob: f91d3274bd8a83af77036c013886b93dc062ad8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *(c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 * 
 */

package org.eclipse.cdt.debug.mi.core.command;

/**
 * 
 *      -gdb-set
 *
 *   Set an internal GDB variable.
 * 
 */
public class MIGDBSetAutoSolib extends MIGDBSet {
	public MIGDBSetAutoSolib(boolean isSet) {
		super(new String[] {"auto-solib-add", (isSet) ? "on" : "off"});
	}
}

Back to the top