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