Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2a4fab7a0a1b901d1de48acdf6ef8ddb6482e24c (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
27
28
29
/*******************************************************************************
 * Copyright (c) 2005 Intel 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:
 * Intel Corporation - Initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.managedbuilder.internal.core;

import org.eclipse.cdt.managedbuilder.core.IConfiguration;
import org.eclipse.cdt.managedbuilder.core.IConfigurationNameProvider;

public class GnuConfigurationNameProvider implements IConfigurationNameProvider {

	/* (non-Javadoc)
	 * @see org.eclipse.cdt.managedbuilder.core.IConfigurationNameProvider#getUniqueConfigurationName(org.eclipse.cdt.managedbuilder.core.IConfiguration, java.lang.String[])
	 */
	@Override
	public String getNewConfigurationName(IConfiguration configuration,
			String[] usedConfigurationNames) {
		// TODO Auto-generated method stub
		return null;
	}

}

Back to the top