blob: 86253e4b8a7c691dc56b95503af604b2ca8b75d2 [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.ICDILongValue;
import org.eclipse.cdt.debug.mi.core.cdi.model.Variable;
/**
*/
public class LongValue extends IntegralValue implements ICDILongValue {
/**
* @param v
*/
public LongValue(Variable v) {
super(v);
}
}