Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java
deleted file mode 100644
index b6cec1e2d5c..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package org.eclipse.cdt.core.model;
-
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- */
-
-/**
- */
-public interface IBinaryElement extends ICElement {
-
- /**
- * Returns the address of the function. This method will return,
- * the address of a symbol for children of IBinaryObject.
- *
- * @exception CModelException if this element does not have address
- * information.
- */
- long getAddress() throws CModelException;
-
- /**
- * Returns the binary object the element belongs to.
- *
- */
- IBinary getBinary();
-}

Back to the top