Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d7be37ae4f85b24143769236f5f1ae811a96ea19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*******************************************************************************
 * Copyright (c) 2010 Mentor Graphics Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 * Anna Dushistova (Mentor Graphics) - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.mi.service.command.commands;

import org.eclipse.cdt.dsf.debug.service.command.ICommandControlService.ICommandControlDMContext;
/**
 * 
 *     -gdb-set solib-absolute-prefix PATH
 * @since 4.0
 * 
 */
public class MIGDBSetSolibAbsolutePrefix extends MIGDBSet {

	public MIGDBSetSolibAbsolutePrefix(ICommandControlDMContext ctx, String prefix) {
		super(ctx, new String[] {"solib-absolute-prefix", prefix}); //$NON-NLS-1$
	}

}

Back to the top