blob: 1d3943395159b19e970351cb6a6405d467631295 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.cdi.model.type;
import org.eclipse.cdt.debug.core.cdi.model.type.ICDIFunctionValue;
import org.eclipse.cdt.debug.mi.core.cdi.model.Variable;
/**
* Enter type comment.
*
* @since Jun 3, 2003
*/
public class FunctionValue extends DerivedValue implements ICDIFunctionValue {
public FunctionValue(Variable v) {
super(v);
}
}