1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

2004-11-08 Alain Magloire

New class ICDIFunctionFinished.
	It return the return value of the function.
	* cdi/org/eclipse/cdt/debug/mi/core/cdi/ICDIFunctionFinished.java
This commit is contained in:
Alain Magloire 2004-11-08 18:13:27 +00:00
parent d44dbb5d43
commit e35ddb8ef1
2 changed files with 40 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-11-08 Alain Magloire
New class ICDIFunctionFinished.
It return the return value of the function.
* cdi/org/eclipse/cdt/debug/mi/core/cdi/ICDIFunctionFinished.java
2004-11-04 Mikhail Khodjaiants 2004-11-04 Mikhail Khodjaiants
Removed "Refresh" and "Auto-Refresh" actions support for shared libraries. Removed "Refresh" and "Auto-Refresh" actions support for shared libraries.
* ICDebugConstants.java * ICDebugConstants.java

View file

@ -0,0 +1,35 @@
/**********************************************************************
* Copyright (c) 2002,2003,2004 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* QNX Software Systems - Initial API and implementation
***********************************************************************/
package org.eclipse.cdt.debug.core.cdi;
import org.eclipse.cdt.debug.core.cdi.model.ICDIValue;
import org.eclipse.cdt.debug.core.cdi.model.type.ICDIType;
/*
* ICDIFunctionFinished
*/
public interface ICDIFunctionFinished extends ICDIEndSteppingRange {
/**
* Return the type of the return value of
* the function.
*
* @return ICDIType returnType value
*/
ICDIType getReturnType() throws CDIException;
/**
* The return value of the function.
*
* @return
*/
ICDIValue getReturnValue() throws CDIException;
}