Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4a761f7163593f89f878457e5b4a29729eee4970 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * (c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 */
package org.eclipse.cdt.debug.core.cdi.model.type;

import org.eclipse.cdt.debug.core.cdi.CDIException;

/**
 */
public interface ICDIReferenceValue extends ICDIDerivedValue {

	long referenceValue() throws CDIException;
}

Back to the top