Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8d6a817607c9e25008341f5535be948dc96e71f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.cdt.internal.core.newparser;
import java.util.List;
/**
 * @author jcamelon
 *
 * To change this generated comment edit the template variable 
"typecomment":
 * Window>Preferences>Java>Templates.
 * To enable and disable the creation of type comments go to
 * Window>Preferences>Java>Code Generation.
 */
public interface IMacroDescriptor {
	void initialize(String name, List identifiers, List tokens, String sig);
	List getParameters();
	List getTokenizedExpansion();
	String getName();
	String getSignature();
}

Back to the top