1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

New file.

This commit is contained in:
Alain Magloire 2003-02-12 05:22:21 +00:00
parent a16cae3be3
commit a0a2285cff

View file

@ -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;
}
}