Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 00e5bdf6eebb31aa9cbf2e6a407fcc1dfd46c48f (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
30
31
32
33
34
35
36
37
38
39
40
/*******************************************************************************
 * Copyright (c) 2009, 2012 Wind River Systems, Inc. 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:
 *     Markus Schorn - initial API and implementation
 *******************************************************************************/ 
package org.eclipse.cdt.internal.core.parser.scanner;

import java.util.List;

/** 
 * Represents the include search path
 */
public final class IncludeSearchPath {
	private final boolean fInhibitUseOfCurrentFileDirectory;
	private final IncludeSearchPathElement[] fElements;

	IncludeSearchPath(List<IncludeSearchPathElement> elements, boolean inhibitUseOfCurrentFileDirectory) {
		fElements= elements.toArray(new IncludeSearchPathElement[elements.size()]);
		fInhibitUseOfCurrentFileDirectory= inhibitUseOfCurrentFileDirectory;
	}
	
	/**
	 * @return the elements of the include search path.
	 */
	public IncludeSearchPathElement[] getElements() {
		return fElements;
	}
	
	/**
	 * @return whether the use of the directory of the current file is inhibited.
	 */
	public boolean isInhibitUseOfCurrentFileDirectory() {
		return fInhibitUseOfCurrentFileDirectory;
	}
}

Back to the top