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 c24e69cb128..cce0534e35d 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 @@ -66,6 +66,12 @@ public interface IBinaryParser extends IAdaptable { * @return the binary contents. */ InputStream getContents(); + + /** + * Return the binary parser + * @return + */ + IBinaryParser getBinaryParser(); } /** @@ -208,6 +214,12 @@ public interface IBinaryParser extends IAdaptable { * @return */ int getLineNumber(long offset); + + /** + * Return the binary object this symbol is from. + * @return + */ + IBinaryObject getBinarObject(); } /**