Package org.eclipse.cdt.core.dom.parser
Class AbstractScannerExtensionConfiguration.MacroDefinition
- java.lang.Object
-
- org.eclipse.cdt.core.dom.parser.AbstractScannerExtensionConfiguration.MacroDefinition
-
- All Implemented Interfaces:
IMacro
- Enclosing class:
- AbstractScannerExtensionConfiguration
protected static class AbstractScannerExtensionConfiguration.MacroDefinition extends java.lang.Object implements IMacro
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description char[]getExpansion()Returns the expansion for this macro.char[]getSignature()Return the signature of a macro, which is the name for object style macros and the name followed by the comma-separated parameters put in parenthesis.
-
-
-
Method Detail
-
getSignature
public char[] getSignature()
Description copied from interface:IMacroReturn the signature of a macro, which is the name for object style macros and the name followed by the comma-separated parameters put in parenthesis. For example: 'funcStyleMacro(par1, par2)'.- Specified by:
getSignaturein interfaceIMacro
-
getExpansion
public char[] getExpansion()
Description copied from interface:IMacroReturns the expansion for this macro.- Specified by:
getExpansionin interfaceIMacro
-
-