1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

New files to deal with Shared Events from GDB

This commit is contained in:
Alain Magloire 2003-08-19 02:01:31 +00:00
parent 95e899e939
commit 551a927cf2
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,17 @@
/*
*
*/
package org.eclipse.cdt.debug.mi.core.cdi;
import org.eclipse.cdt.debug.core.cdi.ICDISharedLibraryEvent;
/**
*
*/
public class SharedLibraryEvent extends SessionObject implements ICDISharedLibraryEvent {
public SharedLibraryEvent(Session session) {
super(session);
}
}

View file

@ -0,0 +1,28 @@
/*
* (c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.event;
import org.eclipse.cdt.debug.mi.core.output.MIExecAsyncOutput;
import org.eclipse.cdt.debug.mi.core.output.MIResultRecord;
/**
*
*/
public class MISharedLibEvent extends MIStoppedEvent {
public MISharedLibEvent(MIExecAsyncOutput async) {
super(async);
parse();
}
public MISharedLibEvent(MIResultRecord record) {
super(record);
parse();
}
}