mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 12:55:40 +02:00
Change of the Constructor to use ArgumentObject
This commit is contained in:
parent
d6d02ccf76
commit
8e125546ce
1 changed files with 3 additions and 2 deletions
|
@ -5,13 +5,14 @@
|
||||||
package org.eclipse.cdt.debug.mi.core.cdi.model;
|
package org.eclipse.cdt.debug.mi.core.cdi.model;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIArgument;
|
import org.eclipse.cdt.debug.core.cdi.model.ICDIArgument;
|
||||||
|
import org.eclipse.cdt.debug.mi.core.cdi.ArgumentObject;
|
||||||
import org.eclipse.cdt.debug.mi.core.output.MIVar;
|
import org.eclipse.cdt.debug.mi.core.output.MIVar;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
public class Argument extends Variable implements ICDIArgument {
|
public class Argument extends Variable implements ICDIArgument {
|
||||||
|
|
||||||
public Argument(StackFrame frame, String name, MIVar var) {
|
public Argument(ArgumentObject obj, MIVar var) {
|
||||||
super(frame, name, var);
|
super(obj, var);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue