1
0
Fork 0
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:
Alain Magloire 2003-01-08 15:43:03 +00:00
parent c96131a558
commit 68ef3ff80a
2 changed files with 36 additions and 0 deletions

View file

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

View file

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