Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0e3b35b210bc2cc5f9a740792fc4b96cfa7eb767 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>

<!-- ================================================= -->
<!-- This is the plugin for declaring the help         -->
<!-- contributions of a doc component plugin.          -->
<!-- ================================================= -->

<plugin 

   name = "C/C++ Development User Guide"
   id = "org.eclipse.cdt.doc.user"
   version = "1.0"
  provider-name = "Rational Software: IBM Software Group">
   <!-- Configure the help contribution for this plugin --> 
   <!-- This part should be in a documentation plugin -->
   <extension point="org.eclipse.help.toc">
       <toc file="toc.xml" primary="true" /> 
   </extension>
   <extension point="org.eclipse.help.contexts">
       <contexts file="contextHelp.xml" plugin="org.eclipse.cdt.ui"/> 
   </extension>
   <extension point="org.eclipse.help.contexts">
       <contexts file="contextHelp.xml" plugin="org.eclipse.debug.ui"/> 
   </extension>
   <extension point="org.eclipse.help.contexts">
       <contexts file="contextHelp.xml" plugin="org.eclipse.cdt.debug.ui"/> 
   </extension>
</plugin>

Back to the top