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