From 4a43f50ff80e98cfc82ee777edcf9436c799f429 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 16 Jan 2003 03:12:23 +0000 Subject: [PATCH] place holder for the shared lib info --- .../cdt/debug/mi/core/output/MIShared.java | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIShared.java diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIShared.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIShared.java new file mode 100644 index 00000000000..f0af317f5c1 --- /dev/null +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIShared.java @@ -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; + } +}