Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a1fe1a8b283536393503bef7e19caea9a93524d0 (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
41
42
/*******************************************************************************
 * Copyright (c) 2005, 2006 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.internal.core.parser.scanner2;

import org.eclipse.cdt.core.parser.IMacro;
import org.eclipse.cdt.internal.core.parser.scanner2.IScannerPreprocessorLog.IMacroDefinition;

/**
 * @author jcamelon
 *
 */
public abstract class DynamicStyleMacro implements IMacro{

	public abstract char [] execute();
	
	public DynamicStyleMacro( char [] n )
	{
		name = n;
	}
	public final char [] name;
    public IMacroDefinition attachment; 

	public char[] getSignature()
	{
	    return name;
	}
	public char[] getName()
	{
	    return name;
	}
	public char[] getExpansion() {
		return execute();
	}
}

Back to the top