diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 1ea73731938..bbb91c85ba9 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -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 Removed "Refresh" and "Auto-Refresh" actions support for shared libraries. * ICDebugConstants.java diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDIFunctionFinished.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDIFunctionFinished.java new file mode 100644 index 00000000000..3970d47aa86 --- /dev/null +++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDIFunctionFinished.java @@ -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; +}