home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / gedit-2 / plugins / snippets / idl.xml < prev    next >
Encoding:
Extensible Markup Language  |  2006-08-27  |  992 b   |  50 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <snippets language="IDL">
  3.   <snippet id="mod">
  4.     <text><![CDATA[module ${1:name}
  5. {
  6.     $0
  7. };
  8. ]]></text>
  9.     <tag>mod</tag>
  10.     <description>Module</description>
  11.   </snippet>
  12.   <snippet id="if">
  13.     <text><![CDATA[interface ${1:name}
  14. {
  15.     $0
  16. };
  17. ]]></text>
  18.     <tag>if</tag>
  19.     <description>Interface</description>
  20.   </snippet>
  21.   <snippet id="str">
  22.     <text><![CDATA[struct ${1:name}
  23. {
  24.     $0
  25. };
  26. ]]></text>
  27.     <tag>str</tag>
  28.     <description>Struct</description>
  29.   </snippet>
  30.   <snippet id="exc">
  31.     <text><![CDATA[exception ${1:name}
  32. {
  33.     $0
  34. };
  35. ]]></text>
  36.     <tag>exc</tag>
  37.     <description>Exception</description>
  38.   </snippet>
  39.   <snippet id="seq">
  40.     <text><![CDATA[sequence<${1:type}> ]]></text>
  41.     <tag>seq</tag>
  42.     <description>Sequence</description>
  43.   </snippet>
  44.   <snippet id="tseq">
  45.     <text><![CDATA[typedef sequence<${1:type}> ${0:newtype};]]></text>
  46.     <tag>tseq</tag>
  47.     <description>Typedef Sequence</description>
  48.   </snippet>
  49. </snippets>
  50.