Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8027d3f8000ed82a7541ed0b19dbed49615ace4f (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
/*******************************************************************************
 * Copyright (c) 2002, 2004 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
 */
public class Directives {

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

Back to the top