mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
new File for memory event.
This commit is contained in:
parent
fe3137c647
commit
e0a1aac99a
1 changed files with 24 additions and 0 deletions
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* (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 MIMemoryChangedEvent extends MIChangedEvent {
|
||||
|
||||
Long[] addresses;
|
||||
public MIMemoryChangedEvent(Long[] addrs) {
|
||||
addresses = addrs;
|
||||
}
|
||||
|
||||
public Long[] getAddresses() {
|
||||
return addresses;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue