From ace9aa5fd7328a3a39104588b392a97b8dd255ad Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 20 Nov 2003 17:05:33 +0000 Subject: [PATCH] Provide a way to give the linenumber from the offset of a symbol. --- .../src/org/eclipse/cdt/core/IBinaryParser.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java index 3f7e3a78898..783b54f5d68 100644 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java +++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java @@ -86,6 +86,7 @@ public interface IBinaryParser { int getEndLine(); IPath getFilename(); int getType(); + int getLineNumber(long offset); } IBinaryFile getBinary(IPath path) throws IOException;