mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
New file.
This commit is contained in:
parent
a16cae3be3
commit
a0a2285cff
1 changed files with 31 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
||||||
|
/*
|
||||||
|
* (c) Copyright QNX Software Systems Ltd. 2002.
|
||||||
|
* All Rights Reserved.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
package org.eclipse.cdt.debug.mi.core.event;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This can not be detected yet by gdb/mi.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class MIVarDeletedEvent extends MIDestroyedEvent {
|
||||||
|
|
||||||
|
String varName;
|
||||||
|
|
||||||
|
public MIVarDeletedEvent(String var) {
|
||||||
|
this(0, var);
|
||||||
|
}
|
||||||
|
|
||||||
|
public MIVarDeletedEvent(int token, String var) {
|
||||||
|
super(token);
|
||||||
|
varName = var;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getVarName() {
|
||||||
|
return varName;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue