Skip to main content
summaryrefslogtreecommitdiffstats
blob: f667d39f400c04db44ecb0d35f27d73d00392bd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 *(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 ICDIArrayType extends ICDIDerivedType {

	int getDimension();
}

Back to the top