mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
CModel element to model a build/indexer config.
This commit is contained in:
parent
deb0082dc5
commit
8da6bfb0f0
1 changed files with 31 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2008 Wind River Systems 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:
|
||||
* Doug Schaefer (Wind River Systems)
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.model;
|
||||
|
||||
import org.eclipse.cdt.core.parser.IScannerInfo;
|
||||
import org.eclipse.core.resources.IResource;
|
||||
|
||||
/**
|
||||
* Represents a build configuration.
|
||||
*
|
||||
* @author Doug Schaefer
|
||||
*/
|
||||
public interface IConfiguration {
|
||||
|
||||
/**
|
||||
* Get the scanner info for the given resource in this configuration.
|
||||
*
|
||||
* @param resource
|
||||
* @return scanner info for this resource in this configuration
|
||||
*/
|
||||
IScannerInfo getScannerInfo(IResource resource);
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue