blob: 54bc3b068f5a674b88e2f7803a36bb17fe5d4737 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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 Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.internal.rdt.core.model;
public class FunctionInfo extends SourceManipulationInfo {
private static final long serialVersionUID = 1L;
public FunctionInfo(CElement parent) {
super(parent);
}
public void setConst(boolean isConst) {
((FunctionDeclaration) fParent).setConst(isConst);
}
public void setStatic(boolean isStatic) {
((FunctionDeclaration) fParent).setStatic(isStatic);
}
}