blob: 39a7710ef1839ac7148081b0ff0100c3feda1129 [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.ICDIIntegralType;
/**
*/
public abstract class IntegralType extends Type implements ICDIIntegralType {
boolean unSigned;
public IntegralType(ICDITarget target, String typename, boolean isUnsigned) {
super(target, typename);
unSigned = isUnsigned;
}
/* (non-Javadoc)
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIIntegralType#isUnsigned()
*/
public boolean isUnsigned() {
return unSigned;
}
}