1<html> 2<head> 3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 4<title>Code</title> 5<link rel="stylesheet" href="../../boostbook.css" type="text/css"> 6<meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> 7<link rel="home" href="../../index.html" title="Chapter 1. Boost.Bimap"> 8<link rel="up" href="../rationale.html" title="Rationale"> 9<link rel="prev" href="additional_features.html" title="Additional Features"> 10<link rel="next" href="the_student_and_the_mentor.html" title="The student and the mentor"> 11</head> 12<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> 13<table cellpadding="2" width="100%"><tr> 14<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td> 15<td align="center"><a href="../../../../../../index.html">Home</a></td> 16<td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td> 17<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> 18<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> 19<td align="center"><a href="../../../../../../more/index.htm">More</a></td> 20</tr></table> 21<hr> 22<div class="spirit-nav"> 23<a accesskey="p" href="additional_features.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../rationale.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="the_student_and_the_mentor.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> 24</div> 25<div class="section"> 26<div class="titlepage"><div><div><h3 class="title"> 27<a name="boost_bimap.rationale.code"></a><a class="link" href="code.html" title="Code">Code</a> 28</h3></div></div></div> 29<p> 30 You can browse the code using the <a href="../../doxydoc/index.html" target="_top"><span class="bold"><strong>Boost.Bimap doxygen docs</strong></span></a>. 31 </p> 32<p> 33 The code follows the <a href="http://www.boost.org/more/lib_guide.htm" target="_top">Boost 34 Library Requirement and Guidelines</a> as closely as possible. 35 </p> 36<div class="table"> 37<a name="boost_bimap.rationale.code.t0"></a><p class="title"><b>Table 1.10. folders in boost/bimap</b></p> 38<div class="table-contents"><table class="table" summary="folders in boost/bimap"> 39<colgroup> 40<col> 41<col> 42</colgroup> 43<thead><tr> 44<th> 45 <p> 46 name 47 </p> 48 </th> 49<th> 50 <p> 51 what is inside? 52 </p> 53 </th> 54</tr></thead> 55<tbody> 56<tr> 57<td> 58 <p> 59 user level header files 60 </p> 61 </td> 62<td class="auto-generated"> </td> 63</tr> 64<tr> 65<td> 66 <p> 67 tagged/ 68 </p> 69 </td> 70<td> 71 <p> 72 tagged idiom 73 </p> 74 </td> 75</tr> 76<tr> 77<td> 78 <p> 79 relation/ 80 </p> 81 </td> 82<td> 83 <p> 84 the bimap data 85 </p> 86 </td> 87</tr> 88<tr> 89<td> 90 <p> 91 container_adaptor/ 92 </p> 93 </td> 94<td> 95 <p> 96 easy way of adapting containers 97 </p> 98 </td> 99</tr> 100<tr> 101<td> 102 <p> 103 views/ 104 </p> 105 </td> 106<td> 107 <p> 108 bimap views 109 </p> 110 </td> 111</tr> 112<tr> 113<td> 114 <p> 115 property_map/ 116 </p> 117 </td> 118<td> 119 <p> 120 support for property map concept 121 </p> 122 </td> 123</tr> 124</tbody> 125</table></div> 126</div> 127<br class="table-break"><div class="table"> 128<a name="boost_bimap.rationale.code.t1"></a><p class="title"><b>Table 1.11. folders in each folder</b></p> 129<div class="table-contents"><table class="table" summary="folders in each folder"> 130<colgroup> 131<col> 132<col> 133</colgroup> 134<thead><tr> 135<th> 136 <p> 137 name 138 </p> 139 </th> 140<th> 141 <p> 142 what is inside? 143 </p> 144 </th> 145</tr></thead> 146<tbody> 147<tr> 148<td> 149 </td> 150<td> 151 <p> 152 class definitions 153 </p> 154 </td> 155</tr> 156<tr> 157<td> 158 <p> 159 support/ 160 </p> 161 </td> 162<td> 163 <p> 164 optional metafunctions and free functions 165 </p> 166 </td> 167</tr> 168<tr> 169<td> 170 <p> 171 detail/ 172 </p> 173 </td> 174<td> 175 <p> 176 things not intended for the user's eyes 177 </p> 178 </td> 179</tr> 180</tbody> 181</table></div> 182</div> 183<br class="table-break"> 184</div> 185<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> 186<td align="left"></td> 187<td align="right"><div class="copyright-footer">Copyright © 2006-2012 Matias Capeletto<p> 188 Distributed under the Boost Software License, Version 1.0. (See accompanying 189 file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) 190 </p> 191</div></td> 192</tr></table> 193<hr> 194<div class="spirit-nav"> 195<a accesskey="p" href="additional_features.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../rationale.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="the_student_and_the_mentor.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> 196</div> 197</body> 198</html> 199