Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Prigogin2013-08-02 20:52:42 +0000
committerSergey Prigogin2013-08-02 20:52:42 +0000
commit983f7529a35143a6dec649656b1713e92df54f33 (patch)
tree44ecc559d64fb61f273ddf74a6553d905818ee4b /core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui
parent2cb5f8a29ab44fb4ced00802205fd20d0b4d30bb (diff)
downloadorg.eclipse.cdt-983f7529a35143a6dec649656b1713e92df54f33.tar.gz
org.eclipse.cdt-983f7529a35143a6dec649656b1713e92df54f33.tar.xz
org.eclipse.cdt-983f7529a35143a6dec649656b1713e92df54f33.zip
Bug 45203. Support for symbols exported by multiple headers.
Diffstat (limited to 'core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java
index 3c43d789754..c9e44edfd22 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/PreferenceConstants.java
@@ -2065,6 +2065,15 @@ public class PreferenceConstants {
public static final String INCLUDES_HEADER_SUBSTITUTION = "organizeIncludes.headerSubstitution"; //$NON-NLS-1$
/**
+ * Symbol exporting rules.
+ * The value of the preference is an XML representation of one or more
+ * {@link org.eclipse.cdt.internal.ui.refactoring.includes.SymbolExportMap}s.
+ *
+ * @since 5.7
+ */
+ public static final String INCLUDES_SYMBOL_EXPORTING_HEADERS = "organizeIncludes.symbolExportingHeaders"; //$NON-NLS-1$
+
+ /**
* Include style for headers closely related to the including file.
* The value of the preference is an XML representation of
* {@link org.eclipse.cdt.internal.ui.refactoring.includes.IncludeGroupStyle}.

Back to the top