diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/command/MIStackInfoDepth.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/command/MIStackInfoDepth.java index f700dd7eaba..5ac985ed1ca 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/command/MIStackInfoDepth.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/command/MIStackInfoDepth.java @@ -29,6 +29,10 @@ public class MIStackInfoDepth extends MICommand super("-stack-info-depth", new String[]{Integer.toString(maxDepth)}); } + public MIStackInfoDepthInfo getMIStackInfoDepthInfo() throws MIException { + return (MIStackInfoDepthInfo)getMIInfo(); + } + public MIInfo getMIInfo() throws MIException { MIInfo info = null; MIOutput out = getMIOutput();