mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
place holder for the shared lib info
This commit is contained in:
parent
67bfd0aa14
commit
4a43f50ff8
1 changed files with 40 additions and 0 deletions
|
@ -0,0 +1,40 @@
|
||||||
|
/*
|
||||||
|
* (c) Copyright QNX Software Systems Ltd. 2002.
|
||||||
|
* All Rights Reserved.
|
||||||
|
*/
|
||||||
|
package org.eclipse.cdt.debug.mi.core.output;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GDB/MI shared information
|
||||||
|
*/
|
||||||
|
public class MIShared {
|
||||||
|
|
||||||
|
long from;
|
||||||
|
long to;
|
||||||
|
boolean isread;
|
||||||
|
String name;
|
||||||
|
|
||||||
|
public MIShared (long start, long end, boolean read, String location) {
|
||||||
|
from = start;
|
||||||
|
to = end;
|
||||||
|
isread = read;
|
||||||
|
name = location;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getFrom() {
|
||||||
|
return from;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getTo() {
|
||||||
|
return to;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isRead() {
|
||||||
|
return isread;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue