Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: af7fac7f795a027ad7db1e13738771e033b800b9 (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
/*******************************************************************************
 * Copyright (c) 2002, 2008 IBM 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:
 * IBM Rational Software - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.core.parser;

/**
 * @author jcamelon
 */

@SuppressWarnings("nls")
public class Directives {

	public static final String 
		POUND_DEFINE  = "#define",
		POUND_UNDEF   = "#undef",
		POUND_IF      = "#if",
		POUND_IFDEF   = "#ifdef",
		POUND_IFNDEF  = "#ifndef",
		POUND_ELSE    = "#else",
		POUND_ENDIF   = "#endif",
		POUND_INCLUDE = "#include",
		POUND_LINE    = "#line",
		POUND_ERROR   = "#error",
		POUND_PRAGMA  = "#pragma",
		POUND_ELIF    = "#elif",
		POUND_BLANK   = "#",
		_PRAGMA       = "_Pragma",
	    DEFINED       = "defined";
	
}

Back to the top