Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8dc088c2f53db1a8b77b8d39fe9f408205b51b69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 *(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);
	}
}

Back to the top