Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 98fc3bc5ec89d6429b0aeda556e4e5586d8cc376 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 *(c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 * 
 */

package org.eclipse.cdt.debug.core.cdi.model;

/**
 * 
 * Represents a static data structure in the program.
 * 
 * @since Jul 9, 2002
 */
public interface ICStaticVariable extends ICVariable
{
}

Back to the top