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

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

/**
 * 
 * Represents an argument in the stack frame.
 * 
 * @since Jul 22, 2002
 */
public interface ICDIArgument extends ICDIVariable, ICDIArgumentObject {
}

Back to the top