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:
parent
95e899e939
commit
551a927cf2
2 changed files with 45 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
|
@ -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();
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue