blob: b7b64bc38d146161bdd40a5271b1e6566ce88a02 [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.ICDILongLongType;
/**
*/
public class LongLongType extends IntegralType implements ICDILongLongType {
/**
* @param typename
*/
public LongLongType(ICDITarget target, String typename) {
this(target, typename, false);
}
public LongLongType(ICDITarget target, String typename, boolean usigned) {
super(target, typename, usigned);
}
}