blob: 231aef0326c849fa8a3726ad58d151d385a681c7 [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.ICDITarget;
import org.eclipse.cdt.debug.core.cdi.model.type.ICDILongType;
/**
*/
public class LongType extends IntegralType implements ICDILongType {
/**
* @param typename
*/
public LongType(ICDITarget target, String typename) {
this(target, typename, false);
}
public LongType(ICDITarget target, String typename, boolean usigned) {
super(target, typename, usigned);
}
}