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