menu.html 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. <!--
  2. Copyright 2005 Jonathan Turkanis
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <A HREF="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</A>)
  4. -->
  5. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  6. <html>
  7. <head>
  8. <!-- ------------------ Links to Stylesheets and Scripts ------------ -->
  9. <link rel="stylesheet" type="text/css" href="../../../boost.css">
  10. <link rel="stylesheet" type="text/css" href="tree/tree.css">
  11. <script language="JavaScript" src="tree/tree.js"></script>
  12. <style> CODE { font-size:80% } </style>
  13. <!-- ------------------ Create and Populate Tree Control ------------- -->
  14. <script language="JavaScript">
  15. <!--
  16. var tree = new tree_control("content");
  17. tree.add("Introduction", "home.html").parent()
  18. tree.add("Tutorial", "tutorial/tutorial.html")
  19. .add("Writing Devices")
  20. .add("Overview", "tutorial/writing_devices.html").parent()
  21. .add("<CODE>container_source</CODE>", "tutorial/container_source.html").parent()
  22. .add("<CODE>container_sink</CODE>", "tutorial/container_sink.html").parent()
  23. .add("<CODE>container_device</CODE>", "tutorial/container_device.html").parent().parent()
  24. .add("Writing Filters")
  25. .add("Overview", "tutorial/writing_filters.html", true)
  26. .add("Input and Output", "tutorial/writing_filters.html#input_filters_and_output_filters").parent()
  27. .add("Filter Helpers", "tutorial/writing_filters.html#filter_helpers").parent()
  28. .add("Selecting A Filter", "tutorial/writing_filters.html#selecting_a_filter").parent().parent()
  29. .add("Filter Usage", "tutorial/filter_usage.html", true).parent()
  30. .add("Shell Comments", "tutorial/shell_comments_filters.html", true)
  31. .add("<CODE>stdio_filter</CODE>", "tutorial/shell_comments_filters.html#shell_comments_stdio_filter").parent()
  32. .add("<CODE>input_filter</CODE>", "tutorial/shell_comments_filters.html#shell_comments_input_filter").parent()
  33. .add("<CODE>output_filter</CODE>", "tutorial/shell_comments_filters.html#shell_comments_output_filter").parent().parent()
  34. .add("Line-Wrapping", "tutorial/line_wrapping_filters.html", true)
  35. .add("<CODE>stdio_filter</CODE>", "tutorial/line_wrapping_filters.html#line_wrapping_stdio_filter").parent()
  36. .add("<CODE>input_filter</CODE>", "tutorial/line_wrapping_filters.html#line_wrapping_input_filter").parent()
  37. .add("<CODE>output_filter</CODE>", "tutorial/line_wrapping_filters.html#line_wrapping_output_filter").parent().parent()
  38. .add("Tab-Expanding", "tutorial/tab_expanding_filters.html", true)
  39. .add("<CODE>stdio_filter</CODE>", "tutorial/tab_expanding_filters.html#tab_expanding_stdio_filter").parent()
  40. .add("<CODE>input_filter</CODE>", "tutorial/tab_expanding_filters.html#tab_expanding_input_filter").parent()
  41. .add("<CODE>output_filter</CODE>", "tutorial/tab_expanding_filters.html#tab_expanding_output_filter").parent().parent()
  42. .add("Dictionary", "tutorial/dictionary_filters.html", true)
  43. .add("<CODE>stdio_filter</CODE>", "tutorial/dictionary_filters.html#dictionary_stdio_filter").parent()
  44. .add("<CODE>input_filter</CODE>", "tutorial/dictionary_filters.html#dictionary_input_filter").parent()
  45. .add("<CODE>output_filter</CODE>", "tutorial/dictionary_filters.html#dictionary_output_filter").parent().parent()
  46. .add("UNIX-to-DOS", "tutorial/unix2dos_filters.html", true)
  47. .add("<CODE>stdio_filter</CODE>", "tutorial/unix2dos_filters.html#unix2dos_stdio_filter").parent()
  48. .add("<CODE>input_filter</CODE>", "tutorial/unix2dos_filters.html#unix2dos_input_filter").parent()
  49. .add("<CODE>output_filter</CODE>", "tutorial/unix2dos_filters.html#unix2dos_output_filter").parent().parent()
  50. .add("Multi-Character Filters", "tutorial/multichar_filters.html", true)
  51. .add("InputFilters", "tutorial/multichar_filters.html#multichar_input_filters").parent()
  52. .add("<CODE>shell_comments_mutichar_input_filter</CODE>", "tutorial/multichar_filters.html#shell_comments_multichar_input_filter").parent()
  53. .add("OutputFilters", "tutorial/multichar_filters.html#multichar_output_filters").parent()
  54. .add("<CODE>shell_comments_multichar_output_filter</CODE>", "tutorial/multichar_filters.html#shell_comments_multichar_ouput_filter").parent().parent()
  55. .add("Dual-Use Filters", "tutorial/dual_use_filters.html").parent()
  56. .add("Finite State Filters", "tutorial/finite_state_filters.html", true)
  57. .add("Finite State Machines", "tutorial/finite_state_filters.html#finite_state_machine").parent()
  58. .add("<CODE>dos2unix_fsm</CODE>", "tutorial/finite_state_filters.html#dos2unix_fsm").parent()
  59. .add("<CODE>unix2dos_fsm</CODE>", "tutorial/finite_state_filters.html#unix2dos_fsm").parent()
  60. .add("<CODE>uncommenting_fsm</CODE>", "tutorial/finite_state_filters.html#uncommenting_fsm");
  61. tree.add("User's Guide", "guide/guide.html", true)
  62. .add("Concepts", "guide/concepts.html").parent()
  63. .add("Modes", "guide/modes.html").parent()
  64. .add("Generic Streams", "guide/generic_streams.html").parent()
  65. .add("Filtering Streams", "guide/filtering_streams.html").parent()
  66. .add("Code Conversion", "guide/code_conversion.html").parent()
  67. .add("Asynchronous I/O", "guide/asynchronous.html").parent()
  68. .add("Object Lifetimes", "guide/lifetimes.html").parent()
  69. .add("Pipelines", "guide/pipelines.html").parent()
  70. .add("Views", "guide/views.html").parent()
  71. .add("Exceptions", "guide/exceptions.html").parent()
  72. .add("Buffering", "guide/buffering.html");
  73. var ref = tree.add("Reference", "reference.html");
  74. ref.add("Concepts", "concepts/concepts.html", true)
  75. .add("Devices", "concepts/concepts.html#devices")
  76. .add("BidirectionalDevice", "concepts/bidirectional_device.html").parent()
  77. .add("Blocking", "concepts/blocking.html").parent()
  78. .add("Device", "concepts/device.html").parent()
  79. .add("Direct", "concepts/direct.html").parent()
  80. .add("Peekable", "concepts/peekable.html").parent()
  81. .add("SeekableDevice", "concepts/seekable_device.html").parent()
  82. .add("Sink", "concepts/sink.html").parent()
  83. .add("Source", "concepts/source.html").parent().parent()
  84. .add("Filters", "concepts/concepts.html#filters")
  85. .add("BidirectionalFilter", "concepts/bidirectional_filter.html").parent()
  86. .add("DualUseFilter", "concepts/dual_use_filter.html").parent()
  87. .add("Filter", "concepts/filter.html").parent()
  88. .add("InputFilter", "concepts/input_filter.html").parent()
  89. .add("Multi-Character", "concepts/multi_character.html").parent()
  90. .add("OutputFilter", "concepts/output_filter.html").parent()
  91. .add("Pipable", "concepts/pipable.html").parent()
  92. .add("SeekableFilter", "concepts/seekable_filter.html").parent().parent()
  93. .add("Other", "concepts/concepts.html#other")
  94. .add("Closable", "concepts/closable.html").parent()
  95. .add("Flushable", "concepts/flushable.html").parent()
  96. .add("Localizable", "concepts/localizable.html").parent()
  97. .add("OptimallyBuffered", "concepts/optimally_buffered.html").parent()
  98. .add("SymmetricFilter", "concepts/symmetric_filter.html");
  99. var classes = ref.add("Classes", "classes/classes.html", true);
  100. classes.add("A", "classes/classes.html#a")
  101. .add("<CODE>aggregate_filter</CODE>", "classes/aggregate.html").parent()
  102. .add("<CODE>array</CODE>", "classes/array.html#array").parent()
  103. .add("<CODE>array_sink</CODE>", "classes/array.html#array_sink").parent()
  104. .add("<CODE>array_source</CODE>", "classes/array.html#array_source").parent().parent()
  105. .add("B", "classes/classes.html#b")
  106. .add("<CODE>back_insert_device</CODE>", "classes/back_inserter.html").parent()
  107. .add("<CODE>basic_array</CODE>", "classes/array.html#array").parent()
  108. .add("<CODE>basic_array_sink</CODE>", "classes/array.html#array_sink").parent()
  109. .add("<CODE>basic_array_source</CODE>", "classes/array.html#array_source").parent()
  110. .add("<CODE>basic_bzip2_compressor</CODE>", "classes/bzip2.html#basic_bzip2_compressor").parent()
  111. .add("<CODE>basic_bzip2_decompressor</CODE>", "classes/bzip2.html#basic_bzip2_decompressor").parent()
  112. .add("<CODE>basic_counter</CODE>", "classes/counter.html").parent()
  113. .add("<CODE>basic_file</CODE>", "classes/file.html#file").parent()
  114. .add("<CODE>basic_file_sink</CODE>", "classes/file.html#file_sink").parent()
  115. .add("<CODE>basic_file_source</CODE>", "classes/file.html#file_source").parent()
  116. .add("<CODE>basic_grep_filter</CODE>", "classes/grep_filter.html").parent()
  117. .add("<CODE>basic_gzip_compressor</CODE>", "classes/gzip.html#basic_gzip_compressor").parent()
  118. .add("<CODE>basic_gzip_decompressor</CODE>", "classes/gzip.html#basic_gzip_decompressor").parent()
  119. .add("<CODE>basic_line_filter</CODE>", "classes/line_filter.html").parent()
  120. .add("<CODE>basic_null_device</CODE>", "classes/null.html#null_device").parent()
  121. .add("<CODE>basic_null_sink</CODE>", "classes/null.html#null_sink").parent()
  122. .add("<CODE>basic_null_source</CODE>", "classes/null.html#null_source").parent()
  123. .add("<CODE>basic_regex_filter</CODE>", "classes/regex_filter.html").parent()
  124. .add("<CODE>basic_stdio_filter</CODE>", "classes/stdio_filter.html").parent()
  125. .add("<CODE>basic_zlib_compressor</CODE>", "classes/zlib.html#basic_zlib_compressor").parent()
  126. .add("<CODE>basic_zlib_decompressor</CODE>", "classes/zlib.html#basic_zlib_decompressor").parent()
  127. .add("<CODE>bzip2_compressor</CODE>", "classes/bzip2.html#basic_bzip2_compressor").parent()
  128. .add("<CODE>bzip2_decompressor</CODE>", "classes/bzip2.html#basic_bzip2_decompressor").parent()
  129. .add("<CODE>bzip2_error</CODE>", "classes/bzip2.html#bzip2_error").parent()
  130. .add("<CODE>bzip2_params</CODE>", "classes/bzip2.html#bzip2_params").parent().parent()
  131. .add("C", "classes/classes.html#c")
  132. .add("<CODE>category_of</CODE>", "classes/../guide/traits.html#category_ref").parent()
  133. .add("<CODE>chain</CODE>", "classes/chain.html").parent()
  134. .add("<CODE>char_traits</CODE>", "classes/../classes/char_traits.html").parent()
  135. .add("<CODE>char_type_of</CODE>", "classes/../guide/traits.html#char_type_of_ref").parent()
  136. .add("<CODE>code_converter</CODE>", "classes/code_converter.html").parent()
  137. .add("<CODE>combination</CODE>", "classes/../functions/combine.html#synopsis").parent()
  138. .add("<CODE>composite</CODE>", "classes/../functions/compose.html#composite").parent()
  139. .add("<CODE>counter</CODE>", "classes/counter.html#reference").parent().parent()
  140. .add("D", "classes/classes.html#d")
  141. .add("<CODE>device</CODE>", "classes/device.html").parent()
  142. .add("<CODE>dual_use_filter</CODE>", "classes/filter.html#reference").parent()
  143. .add("<CODE>dual_use_wfilter</CODE>", "classes/filter.html#reference").parent().parent()
  144. .add("F", "classes/classes.html#f")
  145. .add("<CODE>file</CODE>", "classes/file.html#file").parent()
  146. .add("<CODE>file_descriptor</CODE>", "classes/file_descriptor.html#file_descriptor").parent()
  147. .add("<CODE>file_descriptor_sink</CODE>", "classes/file_descriptor.html#file_descriptor_sink").parent()
  148. .add("<CODE>file_descriptor_source</CODE>", "classes/file_descriptor.html#file_descriptor_source").parent()
  149. .add("<CODE>file_sink</CODE>", "classes/file.html#file_sink").parent()
  150. .add("<CODE>file_source</CODE>", "classes/file.html#file_source").parent()
  151. .add("<CODE>filtering_stream</CODE>", "classes/filtering_stream.html").parent()
  152. .add("<CODE>filtering_streambuf</CODE>", "classes/filtering_streambuf.html").parent()
  153. .add("<CODE>filter</CODE>", "classes/filter.html").parent().parent()
  154. .add("G", "classes/classes.html#g")
  155. .add("<CODE>grep_filter</CODE>", "classes/grep_filter.html").parent()
  156. .add("<CODE>gzip_compressor</CODE>", "classes/gzip.html#basic_gzip_compressor").parent()
  157. .add("<CODE>gzip_compressor</CODE>", "classes/gzip.html#basic_gzip_compressor").parent()
  158. .add("<CODE>gzip_decompressor</CODE>", "classes/gzip.html#basic_gzip_decompressor").parent()
  159. .add("<CODE>gzip_error</CODE>", "classes/gzip.html#gzip_error").parent()
  160. .add("<CODE>gzip_params</CODE>", "classes/gzip.html#gzip_params").parent().parent()
  161. .add("I", "classes/classes.html#i")
  162. .add("<CODE>input_filter</CODE>", "classes/filter.html#reference").parent()
  163. .add("<CODE>input_wfilter</CODE>", "classes/filter.html#reference").parent()
  164. .add("<CODE>inverse</CODE>", "classes/../functions/invert.html#inverse");
  165. classes.add("L", "classes/classes.html#l")
  166. .add("<CODE>line_filter</CODE>", "classes/line_filter.html#reference").parent().parent()
  167. .add("M", "classes/classes.html#m")
  168. .add("<CODE>mapped_file</CODE>", "classes/mapped_file.html#mapped_file").parent()
  169. .add("<CODE>mapped_file_sink</CODE>", "classes/mapped_file.html#mapped_file_sink").parent()
  170. .add("<CODE>mapped_file_source</CODE>", "classes/mapped_file.html#mapped_file_source").parent()
  171. .add("<CODE>mode_of</CODE>", "classes/mode.html").parent()
  172. .add("<CODE>multichar_dual_use_filter</CODE>", "classes/filter.html#reference").parent()
  173. .add("<CODE>multichar_dual_use_wfilter</CODE>", "classes/filter.html#reference").parent()
  174. .add("<CODE>multichar_filter</CODE>", "classes/filter.html").parent()
  175. .add("<CODE>multichar_input_filter</CODE>", "classes/filter.html#reference").parent()
  176. .add("<CODE>multichar_input_wfilter</CODE>", "classes/filter.html#reference").parent()
  177. .add("<CODE>multichar_output_filter</CODE>", "classes/filter.html#reference").parent()
  178. .add("<CODE>multichar_output_wfilter</CODE>", "classes/filter.html#reference").parent()
  179. .add("<CODE>multichar_wfilter</CODE>", "classes/filter.html#reference").parent().parent()
  180. .add("N", "classes/classes.html#n")
  181. .add("<CODE>newline_filter</CODE>", "classes/newline_filter.html").parent()
  182. .add("<CODE>null_sink</CODE>", "classes/null.html#null_sink").parent()
  183. .add("<CODE>null_source</CODE>", "classes/null.html#null_source").parent().parent()
  184. .add("O", "classes/classes.html#o")
  185. .add("<CODE>output_filter</CODE>", "classes/filter.html#reference").parent()
  186. .add("<CODE>output_wfilter</CODE>", "classes/filter.html#reference").parent().parent()
  187. .add("R", "classes/classes.html#r")
  188. .add("<CODE>regex_filter</CODE>", "classes/../classes/regex_filter.html#reference").parent()
  189. .add("<CODE>restriction</CODE>", "classes/../functions/restrict.html#restriction").parent().parent()
  190. .add("S", "classes/classes.html#s")
  191. .add("<CODE>seekable_filter</CODE>", "classes/filter.html#reference").parent()
  192. .add("<CODE>seekable_wfilter</CODE>", "classes/filter.html#reference").parent()
  193. .add("<CODE>sink</CODE>", "classes/device.html#reference").parent()
  194. .add("<CODE>source</CODE>", "classes/device.html#reference").parent()
  195. .add("<CODE>stdio_filter</CODE>", "classes/stdio_filter.html#reference").parent()
  196. .add("<CODE>stream</CODE>", "classes/../guide/generic_streams.html#stream").parent()
  197. .add("<CODE>stream_buffer</CODE>", "classes/../guide/generic_streams.html#stream_buffer").parent()
  198. .add("<CODE>symmetric_filter</CODE>", "classes/symmetric_filter.html").parent().parent()
  199. .add("T", "classes/classes.html#t")
  200. .add("<CODE>tee_device</CODE>", "classes/../functions/tee.html#tee_device").parent()
  201. .add("<CODE>tee_filter</CODE>", "classes/../functions/tee.html#tee_filter").parent().parent()
  202. .add("W", "classes/classes.html#w")
  203. .add("<CODE>warray</CODE>", "classes/array.html#array").parent()
  204. .add("<CODE>warray_sink</CODE>", "classes/array.html#array_sink").parent()
  205. .add("<CODE>warray_source</CODE>", "classes/array.html#array_source").parent()
  206. .add("<CODE>wchain</CODE>", "classes/chain.html#wchain").parent()
  207. .add("<CODE>wcounter</CODE>", "classes/counter.html#reference").parent()
  208. .add("<CODE>wdevice</CODE>", "classes/device.html").parent()
  209. .add("<CODE>wfile</CODE>", "classes/file.html#file").parent()
  210. .add("<CODE>wfile_sink</CODE>", "classes/file.html#file_sink").parent()
  211. .add("<CODE>wfile_source</CODE>", "classes/file.html#file_source").parent()
  212. .add("<CODE>wfilter</CODE>", "classes/filter.html").parent()
  213. .add("<CODE>wgrep_filter</CODE>", "classes/grep_filter.html").parent()
  214. .add("<CODE>wline_filter</CODE>", "classes/line_filter.html#reference").parent()
  215. .add("<CODE>wnull_sink</CODE>", "classes/null.html#null_sink").parent()
  216. .add("<CODE>wnull_source</CODE>", "classes/null.html#null_source").parent()
  217. .add("<CODE>wregex_filter</CODE>", "classes/../classes/regex_filter.html#reference").parent()
  218. .add("<CODE>wsink</CODE>", "classes/device.html#reference").parent()
  219. .add("<CODE>wsource</CODE>", "classes/device.html#reference").parent()
  220. .add("<CODE>wstdio_filter</CODE>", "classes/stdio_filter.html#reference").parent().parent()
  221. .add("Z", "classes/classes.html#z")
  222. .add("<CODE>zlib_compressor</CODE>", "classes/zlib.html#basic_zlib_compressor").parent()
  223. .add("<CODE>zlib_decompressor</CODE>", "classes/zlib.html#basic_zlib_decompressor").parent()
  224. .add("<CODE>zlib_error</CODE>", "classes/zlib.html#zlib_error").parent()
  225. .add("<CODE>zlib_params</CODE>", "classes/zlib.html#zlib_params");
  226. ref.add("Functions", "functions/functions.html", true)
  227. .add("<CODE>back_inserter</CODE>", "classes/back_inserter.html#back_inserter").parent()
  228. .add("<CODE>close</CODE>", "functions/close.html").parent()
  229. .add("<CODE>combine</CODE>", "functions/combine.html").parent()
  230. .add("<CODE>compose</CODE>", "functions/compose.html").parent()
  231. .add("<CODE>copy</CODE>", "functions/copy.html").parent()
  232. .add("<CODE>flush</CODE>", "functions/flush.html").parent()
  233. .add("<CODE>get</CODE>", "functions/get.html").parent()
  234. .add("<CODE>imbue</CODE>", "functions/imbue.html").parent()
  235. .add("<CODE>invert</CODE>", "functions/invert.html").parent()
  236. .add("<CODE>offset_to_position</CODE>", "functions/positioning.html#offset_to_position").parent()
  237. .add("<CODE>optimal_buffer_size</CODE>", "functions/optimal_buffer_size.html").parent()
  238. .add("<CODE>position_to_offset</CODE>", "functions/positioning.html#position_to_offset").parent()
  239. .add("<CODE>put</CODE>", "functions/put.html").parent()
  240. .add("<CODE>putback</CODE>", "functions/putback.html").parent()
  241. .add("<CODE>read</CODE>", "functions/read.html").parent()
  242. .add("<CODE>restrict</CODE>", "functions/restrict.html").parent()
  243. .add("<CODE>seek</CODE>", "functions/seek.html").parent()
  244. .add("<CODE>slice</CODE>", "functions/slice.html").parent()
  245. .add("<CODE>tee</CODE>", "functions/tee.html").parent()
  246. .add("<CODE>test_filter_pair</CODE>", "functions/filter_test.html#test_pair").parent()
  247. .add("<CODE>test_input_filter</CODE>", "functions/filter_test.html#test_input").parent()
  248. .add("<CODE>test_output_filter</CODE>", "functions/filter_test.html#test_output").parent()
  249. .add("<CODE>write</CODE>", "functions/write.html");
  250. ref.add("Macros", "macros/macros.html", true)
  251. .add("<CODE>IOS</CODE>", "macros/workarounds.html#ios").parent()
  252. .add("<CODE>BASIC_ISTREAM</CODE>", "macros/workarounds.html#streams").parent()
  253. .add("<CODE>BASIC_IOS</CODE>", "macros/workarounds.html#ios").parent()
  254. .add("<CODE>BASIC_IOSTREAM</CODE>", "macros/workarounds.html#streams").parent()
  255. .add("<CODE>BASIC_OSTREAM</CODE>", "macros/workarounds.html#streams").parent()
  256. .add("<CODE>BASIC_STREAMBUF</CODE>", "macros/workarounds.html#streambufs").parent()
  257. .add("<CODE>CHAR_TRAITS</CODE>", "macros/workarounds.html#char_traits").parent()
  258. .add("<CODE>COMPONENT</CODE>", "macros/workarounds.html#component_access").parent()
  259. .add("<CODE>COMPONENT_TYPE</CODE>", "macros/workarounds.html#component_access").parent()
  260. .add("<CODE>DEFAULT_DEVICE_BUFFER_SIZE</CODE>", "macros/buffer_sizes.html#component_access").parent()
  261. .add("<CODE>DEFAULT_FILTER_BUFFER_SIZE</CODE>", "macros/buffer_sizes.html#component_access").parent()
  262. .add("<CODE>DEFAULT_PBACK_BUFFER_SIZE</CODE>", "macros/buffer_sizes.html#component_access").parent()
  263. .add("<CODE>FAILURE</CODE>", "macros/workarounds.html#ios").parent()
  264. .add("<CODE>PIPABLE</CODE>", "guide/pipelines.html#boost_iostreams_pipable").parent()
  265. .add("<CODE>PUBSEEKOFF</CODE>", "macros/workarounds.html#streambufs").parent()
  266. .add("<CODE>PUBSEEKPOS</CODE>", "macros/workarounds.html#streambufs").parent()
  267. .add("<CODE>PUBSYNC</CODE>", "macros/workarounds.html#streambufs").parent().parent().parent()
  268. tree.add("Quick Reference", "quick_reference.html");
  269. tree.add("FAQ", "faq.html");
  270. tree.add("Installation", "installation.html");
  271. tree.add("Portability", "portability.html");
  272. tree.add("Rationale", "rationale.html");
  273. tree.add("Bibliography", "bibliography.html");
  274. tree.add("Acknowledgments", "acknowledgments.html");
  275. tree.add("Release Notes", "release_notes.html");
  276. //tree.dump_html = true;
  277. tree.indent = 9;
  278. tree.draw();
  279. // -->
  280. </script>
  281. </head>
  282. <body>
  283. <!-- ------------------ Boost Logo and Library Name ------------------ -->
  284. <table cellpadding=0 cellspacing=0 clear="both" style="margin:0;padding:0" width=170>
  285. <tr>
  286. <td>
  287. <P CLASS="clipped"><a href="../../../index.htm" target="_top">
  288. <img border=0 style="position:relative;left:10" SRC="theme/boost_small.png"></a></P>
  289. </td>
  290. </tr>
  291. </table>
  292. <table clear="both" style="margin-top:0;margin-left:1em;margin-bottom:.5em;padding:0" width=170>
  293. <tr>
  294. <td align=left width=170>
  295. <a style="text-decoration:none" href="index.html" target="_top">
  296. <h1 class="lib-name" style="margin:0">Boost.Iostreams</h1>
  297. </a>
  298. </td>
  299. </tr>
  300. </table>
  301. <hr align="center" width="90%">
  302. <table style="margin:0;padding:0" width=170>
  303. <tr><td>
  304. <!-- ------------------ Markup for Browsers with Scripting Disabled -- -->
  305. <noscript>
  306. <table><tr><td align='left'><table width=150><tr><td><h1 class=tree-caption>Contents</h1></td></tr></table></td></tr><tr><td><div id='list' style='white-space:nowrap;display:'>
  307. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>1</span> <a class='tree-text' onfocus='blur_tree()' href='home.html' target='content'><span class='tree-text'>Introduction</span></a></div></div>
  308. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>2</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/tutorial.html' target='content'><span class='tree-text'>Tutorial</span></a></div><div id='list.2' style='white-space:nowrap;display:'>
  309. <div class='tree-item'><div style='margin-left:18;text-indent:-9'><span class='tree-label'>2.1</span> <span class='tree-text'>Writing Devices</span></div><div id='list.2.1' style='white-space:nowrap;display:'>
  310. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.1.1</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/writing_devices.html' target='content'><span class='tree-text'>Overview</span></a></div></div>
  311. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.1.2</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/container_source.html' target='content'><span class='tree-text'><CODE>container_source</CODE></span></a></div></div>
  312. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.1.3</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/container_sink.html' target='content'><span class='tree-text'><CODE>container_sink</CODE></span></a></div></div>
  313. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.1.4</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/container_device.html' target='content'><span class='tree-text'><CODE>container_device</CODE></span></a></div></div></div></div>
  314. <div class='tree-item'><div style='margin-left:18;text-indent:-9'><span class='tree-label'>2.2</span> <span class='tree-text'>Writing Filters</span></div><div id='list.2.2' style='white-space:nowrap;display:'>
  315. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.1</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/writing_filters.html' target='content'><span class='tree-text'>Overview</span></a></div></div>
  316. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.2</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/filter_usage.html' target='content'><span class='tree-text'>Filter Usage</span></a></div></div>
  317. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.3</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/shell_comments_filters.html' target='content'><span class='tree-text'>Shell Comments</span></a></div></div>
  318. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.4</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/line_wrapping_filters.html' target='content'><span class='tree-text'>Line-Wrapping</span></a></div></div>
  319. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.5</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/tab_expanding_filters.html' target='content'><span class='tree-text'>Tab-Expanding</span></a></div></div>
  320. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.6</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/dictionary_filters.html' target='content'><span class='tree-text'>Dictionary</span></a></div></div>
  321. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.7</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/unix2dos_filters.html' target='content'><span class='tree-text'>UNIX-to-DOS</span></a></div></div>
  322. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.8</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/multichar_filters.html' target='content'><span class='tree-text'>Multi-Character Filters</span></a></div></div>
  323. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.9</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/dual_use_filters.html' target='content'><span class='tree-text'>Dual-Use Filters</span></a></div></div>
  324. <div class='tree-item'><div style='margin-left:36;text-indent:-18'><span class='tree-label'>2.2.10</span> <a class='tree-text' onfocus='blur_tree()' href='tutorial/finite_state_filters.html' target='content'><span class='tree-text'>Finite State Filters</span></a></div></div></div></div></div></div>
  325. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>3</span> <a class='tree-text' onfocus='blur_tree()' href='guide/guide.html' target='content'><span class='tree-text'>User's Guide</span></a></div></div>
  326. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>4</span> <a class='tree-text' onfocus='blur_tree()' href='reference.html' target='content'><span class='tree-text'>Reference</span></a></div><div id='list.4' style='white-space:nowrap;display:'>
  327. <div class='tree-item'><div style='margin-left:18;text-indent:-9'><span class='tree-label'>4.1</span> <a class='tree-text' onfocus='blur_tree()' href='concepts/concepts.html' target='content'><span class='tree-text'>Concepts</span></a></div></div>
  328. <div class='tree-item'><div style='margin-left:18;text-indent:-9'><span class='tree-label'>4.2</span> <a class='tree-text' onfocus='blur_tree()' href='classes/classes.html' target='content'><span class='tree-text'>Classes</span></a></div></div>
  329. <div class='tree-item'><div style='margin-left:18;text-indent:-9'><span class='tree-label'>4.3</span> <a class='tree-text' onfocus='blur_tree()' href='functions/functions.html' target='content'><span class='tree-text'>Functions</span></a></div></div>
  330. <div class='tree-item'><div style='margin-left:18;text-indent:-9'><span class='tree-label'>4.4</span> <a class='tree-text' onfocus='blur_tree()' href='macros/macros.html' target='content'><span class='tree-text'>Macros</span></a></div></div></div></div>
  331. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>5</span> <a class='tree-text' onfocus='blur_tree()' href='quick_reference.html' target='content'><span class='tree-text'>Quick Reference</span></a></div></div>
  332. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>6</span> <a class='tree-text' onfocus='blur_tree()' href='faq.html' target='content'><span class='tree-text'>FAQ</span></a></div></div>
  333. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>7</span> <a class='tree-text' onfocus='blur_tree()' href='installation.html' target='content'><span class='tree-text'>Installation</span></a></div></div>
  334. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>8</span> <a class='tree-text' onfocus='blur_tree()' href='portability.html' target='content'><span class='tree-text'>Portability</span></a></div></div>
  335. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>9</span> <a class='tree-text' onfocus='blur_tree()' href='rationale.html' target='content'><span class='tree-text'>Rationale</span></a></div></div>
  336. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>10</span> <a class='tree-text' onfocus='blur_tree()' href='bibliography.html' target='content'><span class='tree-text'>Bibliography</span></a></div></div>
  337. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>11</span> <a class='tree-text' onfocus='blur_tree()' href='acknowledgments.html' target='content'><span class='tree-text'>Acknowledgments</span></a></div></div>
  338. <div class='tree-item'><div style='margin-left:0;text-indent:-0'><span class='tree-label'>12</span> <a class='tree-text' onfocus='blur_tree()' href='release_notes.html' target='content'><span class='tree-text'>Release Notes</span></a></div></div></div></td></tr></table>
  339. </noscript>
  340. <!-- ------------------ Tree Control --------------------------------- -->
  341. <span id="tree_control"></span>
  342. </td></tr>
  343. </table>
  344. </body>
  345. </html>