blob: 5ace67b66c0c80757ca2a217afd118db2106f859 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2006 IBM Corporation.
* 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.pldt.openmp.analysis.PAST;
import org.eclipse.cdt.core.dom.ast.IASTFileLocation;
import org.eclipse.cdt.core.dom.ast.IASTFunctionStyleMacroParameter;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTPreprocessorFunctionStyleMacroDefinition;
import org.eclipse.cdt.internal.core.dom.parser.ASTNode;
/**
*
* @author pazel
*
*/
public class PASTFunctionMacro extends PASTNode implements IASTPreprocessorFunctionStyleMacroDefinition
{
protected IASTPreprocessorFunctionStyleMacroDefinition macro_ = null;
/**
* PASTFunctionMacro - "define" function macro (Constructor)
* @param macro
*/
public PASTFunctionMacro(IASTPreprocessorFunctionStyleMacroDefinition macro)
{
super((ASTNode)macro);
macro_ = macro;
}
public String getType()
{
return "#define";
}
/**
* Delegated methods for interface IASTPreprocessorFunctionStyleMacroDefinition
*/
public String getExpansion() {
return macro_.getExpansion();
}
public IASTName getName() {
return macro_.getName();
}
public void setExpansion(String exp) {
macro_.setExpansion(exp);
}
public void setName(IASTName name) {
macro_.setName(name);
}
public void addParameter(IASTFunctionStyleMacroParameter parm) {
macro_.addParameter(parm);
}
public IASTFunctionStyleMacroParameter[] getParameters() {
return macro_.getParameters();
}
public int getRoleForName(IASTName n) {
return macro_.getRoleForName(n);
}
public IASTFileLocation getExpansionLocation() {
return macro_.getExpansionLocation();
}
public boolean isPartOfTranslationUnitFile() {
return macro_.isPartOfTranslationUnitFile();
}
}