mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
new abstract class
This commit is contained in:
parent
c96131a558
commit
68ef3ff80a
2 changed files with 36 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* (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 abstract class MICreatedEvent extends MIEvent {
|
||||
public MICreatedEvent(int id) {
|
||||
super(id);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* (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 abstract class MIDestroyedEvent extends MIEvent {
|
||||
public MIDestroyedEvent(int id) {
|
||||
super(id);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue