blob: 25d820f37e555c4742e0feb754a58fba3fc69450 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core.cdi.model.type;
/**
*
* Represents the type of a variable.
*
* @since Apr 15, 2003
*/
public interface ICDIStructType extends ICDIAggregateType {
boolean isClass();
boolean isStruct();
boolean isUnion();
}