Moved from root directory

[SVN r8167]
This commit is contained in:
Beman Dawes 2000-11-10 15:42:26 +00:00
parent ce416dd1f9
commit ef5a239411
2 changed files with 221 additions and 0 deletions

110
libs/libraries.htm Normal file
View file

@ -0,0 +1,110 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<title>Libraries</title>
<meta name="Microsoft Border" content="none, default">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table border="1" cellpadding="2" bgcolor="#007F7F">
<tr>
<td bgcolor="#FFFFFF"><img src="../c++boost.gif" alt="c++boost.gif (8819 bytes)" width="277" height="86"></td>
<td><a href="../index.htm"><font color="#FFFFFF" size="4" face="Arial">Home</font></a></td>
<td><a href="libraries.htm"><font color="#FFFFFF" size="4" face="Arial">Libraries</font></a></td>
<td><a href="../people/people.htm"><font color="#FFFFFF" size="4" face="Arial">People</font></a></td>
<td><a href="../more/faq.htm"><font color="#FFFFFF" size="4" face="Arial">FAQ</font></a></td>
<td><a href="../more/index.htm"><font color="#FFFFFF" size="4" face="Arial">More</font></a></td>
</tr>
</table>
<h1>Boost Libraries</h1>
<ul>
<li><a href="array/index.htm">array</a> - STL compliant container wrapper
for arrays of constant size from Nicolai Josuttis.</li>
<li><a href="utility/call_traits.htm">call_traits</a> - Defines types
for passing parameters from John Maddock, Howard Hinnant, et al.</li>
<li><a href="compose/index.htm">compose</a> - Functional composition
adapters for the STL from Nicolai Josuttis.</li>
<li><a href="utility/compressed_pair.htm">compressed_pair</a> - Empty
member optimization from John Maddock, Howard Hinnant, et al.</li>
<li><a href="config/index.htm">config</a> - Helps boost library
developers adapt to compiler idiosyncrasies; not intended for library users.</li>
<li><a href="dir_it/index.htm">dir_it</a> - A set of file system
directory level iterators from Dietmar Kühl.</li>
<li><a href="functional/index.html">functional</a> - Enhanced function
object adaptors from Mark Rodgers.</li>
<li><a href="graph/docs/table_of_contents.html">graph</a> - Generic graph
components and algorithms from Jeremy Siek &amp; a University of Notre Dame
team.</li>
<li><a href="integer/index.htm">integer</a> - Headers to ease dealing
with integral types.</li>
<li><a href="utility/operators.htm">operators</a> - Templates ease
arithmetic classes and iterators from Dave Abrahams and Jeremy Siek</li>
<li><a href="random/index.html">random</a> - A complete system for random
number generation from Jens Maurer.</li>
<li><a href="rational/index.html">rational</a> - A rational number class
from Paul Moore.</li>
<li><a href="regex/index.htm">regex</a> - Regular expression library from
John Maddock.</li>
<li><a href="smart_ptr/index.htm">smart_ptr</a> - Four smart pointer
classes from Greg Colvin and Beman Dawes.</li>
<li><a href="timer/index.htm">timer</a> - Event timer, progress timer,
and progress display classes from Beman Dawes.</li>
<li><a href="utility/type_traits.htm">type_traits</a> - Templates for
fundamental properties of types from John Maddock, Steve Cleary, et al.</li>
<li><a href="utility/utility.htm">utility</a> - <a href="utility/utility.htm">utility</a> Class <b>noncopyable</b>
plus <b>next(),</b>&nbsp; <b>prior(),</b> and <b>tie()</b> function
templates from Dave Abrahams and others.
</li>
</ul>
<p>See <a href="compiler_status.htm">Compiler Status</a> to find out what
library works with which compiler.</p>
<p>See <a href="hdr_depend.html">Header Dependencies</a> to find out what
other headers each boost header includes.</p>
<h2>Obsolete Libraries</h2>
<ul>
<li><a href="min_rand/index.htm">min_rand</a> - a random number generator
class from Beman Dawes. Replaced by <a href="random/index.html">random</a>.</li>
</ul>
<h2>Beta Libraries</h2>
<ul>
<li><a href="array_traits/index.html">array_traits</a> - tools to treat
built-in arrays more like STL containers from Dietmar Kühl. Also see <a href="array/index.htm">array</a>.</li>
<li><a href="utility/cast.htm">casts</a> - cast templates improve clarity
and safety; utility library contribution from Dave Abrahams and Kevlin
Henney.</li>
<li><a href="pri_queue/index.html">heaps</a> - a heap of priority queues
from Dietmar Kühl.</li>
</ul>
<h2><a name="Download">Download</a></h2>
<p>You may <a href="../boost_all.zip">download all of boost</a> as a single ZIP
file.&nbsp; As many boost headers include other boost headers, installing one at
at time is painful. This is a first try at making installation easier.&nbsp;</p>
<p>If you don't already have a ZIP file decoder, download one from the <a href="http://www.info-zip.org/pub/infozip/">Info-ZIP</a>
web site.</p>
<h2>Installing Boost Libraries</h2>
<p>Many boost libraries are implemented entirely within their header
files.&nbsp; The only preparation for their use is to add the path for the
parent directory of the boost header sub-directory to your compiler's list of
#include search directories.</p>
<blockquote>
<p>For example, using Windows 2000, if you have unzipped release 1.18.1 from
boost_all.zip into the top level directory of your C drive, for Borland, GCC,
and Metrowerks compilers add '-Ic:/boost_1_18_1' to the compiler command line,
and for the Microsoft compiler add '/I &quot;c:/boost_1_18_1&quot;'.&nbsp; For
IDE's, add 'c:/boost_1_18_1' (or whatever you have renamed it to) to the
search list using the appropriate GUI dialog.</p>
</blockquote>
<p>A few boost libraries are implemented by separate source files, and thus
require compilation on your system to link properly.&nbsp; Boost does not
currently have an overall &quot;build&quot; or &quot;make&quot; mechanism in
place.</p>
<hr>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %b %Y" startspan -->10 Nov 2000<!--webbot bot="Timestamp" endspan i-checksum="15233" --></p>
</body>
</html>

111
people/people.htm Normal file
View file

@ -0,0 +1,111 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>People</title>
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta name="Microsoft Border" content="none, default">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table border="1" bgcolor="#007F7F" cellpadding="2">
<tr>
<td bgcolor="#FFFFFF"><img src="../c++boost.gif" alt="c++boost.gif (8819 bytes)" width="277" height="86"></td>
<td><a href="../index.htm"><font face="Arial" color="#FFFFFF"><big>Home</big></font></a></td>
<td><a href="../libs/libraries.htm"><font face="Arial" color="#FFFFFF"><big>Libraries</big></font></a></td>
<td><a href="people.htm"><font face="Arial" color="#FFFFFF"><big>People</big></font></a></td>
<td><a href="../more/faq.htm"><font face="Arial" color="#FFFFFF"><big>FAQ</big></font></a></td>
<td><a href="../more/index.htm"><font face="Arial" color="#FFFFFF"><big>More</big></font></a></td>
</tr>
</table>
<h1>Boost People</h1>
<p>(Click on the names for biographies)<br>
(Click on the images for enlarged images)</p>
<table border="0" cellpadding="4" cellspacing="4">
<tr>
<td><a href="dave_abrahams.htm">Dave Abrahams</a></td>
<td><a href="dave_abrahams.jpg"><img border="0" src="dave_abrahams_small.jpg" alt="dave_abrahams.jpg (30926 bytes)" width="100" height="75"></a></td>
</tr>
<tr>
<td><a href="darin_adler.htm">Darin Adler</a></td>
<td><a href="darin_adler.jpg"><img border="0" src="darin_adler_small.jpg" alt="darin_adler.jpg (30416 bytes)" width="100" height="133"></a></td>
</tr>
<tr>
<td><a href="valentin_bonnard.htm">Valentin Bonnard</a></td>
<td><a href="valentin_bonnard.jpg"><img src="valentin_bonnard_small.jpg" alt="valentin_bonnard.jpg (18207 bytes)" border="0" width="100" height="142"></a></td>
</tr>
<tr>
<td><a href="ed_brey.htm">Ed Brey</a></td>
<td><a href="ed_brey.jpg"><img border="0" src="ed_brey_small.jpg" alt="ed_brey.jpg (13913 bytes)" width="100" height="118"></a></td>
</tr>
<tr>
<td><a href="gavin_collings.htm">Gavin Collings</a></td>
<td><a href="gavin_collings.jpg"><img border="0" src="gavin_collings_small.jpg" alt="gavin_collings.jpg (16739 bytes)" width="100" height="137"></a></td>
</tr>
<tr>
<td><a href="greg_colvin.htm">Greg Colvin</a></td>
<td><a href="greg_colvin.jpg"><img src="greg_colvin_small.jpg" alt="greg_colvin.jpg (52740 bytes)" border="0" width="100" height="133"></a></td>
</tr>
<tr>
<td><a href="http://www.ocsltd.com/founderff.html">Sean Corfield</a></td>
<td><a href="sean_corfield.jpg"><img src="sean_corfield_small.jpg" alt="sean_corfield.jpg (51225 bytes)" border="0" width="100" height="133"></a></td>
</tr>
<tr>
<td><a href="beman_dawes.html">Beman Dawes</a></td>
<td><a href="beman_dawes.jpg"><img src="beman_dawes_small.jpg" alt="beman_dawes.jpg (47863 bytes)" border="0" width="100" height="133"></a></td>
</tr>
<tr>
<td><a href="aleksey_gurtovoy.htm">Aleksey Gurtovoy</a></td>
<td><a href="aleksey_gurtovoy.jpg"><img border="0" src="aleksey_gurtovoy_small.jpg" alt="aleksey_gurtovoy.jpg (12871 bytes)" width="100" height="120"></a></td>
</tr>
<tr>
<td><a href="kevlin_henney.htm">Kevlin Henney</a></td>
<td><a href="kevlin_henney.jpg"><img src="kevlin_henney_small.jpg" alt="kevlin_henney.jpg (27191 bytes)" border="0" width="100" height="133"></a></td>
</tr>
<tr>
<td><a href="howard_hinnant.htm">Howard Hinnant</a></td>
<td><a href="howard_hinnant.jpg"><img border="0" src="howard_hinnant_small.jpg" alt="howard_hinnant.jpg (19817 bytes)" width="100" height="97"></a></td>
</tr>
<tr>
<td><a href="http://www.josuttis.com">Nicolai Josuttis</a></td>
<td><a href="nicolai_josuttis.jpg"><img src="nicolai_josuttis_small.jpg" alt="nicolai_josuttis.jpg (40745 bytes)" border="0" width="100" height="133"></a></td>
</tr>
<tr>
<td><a href="dietmar_kuehl.htm">Dietmar Kühl</a></td>
<td><a href="dietmar_kuehl.jpg"><img src="dietmar_kuehl_small.jpg" alt="dietmar_kuehl.jpg (57821 bytes)" border="0" width="100" height="133"></a></td>
</tr>
<tr>
<td><a href="liequan_lee.htm">Lie-Quan Lee</a></td>
<td><a href="liequan_lee.jpg"><img border="0" src="liequan_lee_small.jpg" alt="liequan_lee.jpg (24165 bytes)" width="93" height="133"></a></td>
</tr>
<tr>
<td><a href="john_maddock.htm">John Maddock</a></td>
<td><a href="john_maddock.jpg"><img border="0" src="john_maddock_small.jpg" alt="john_maddock.jpg (14611 bytes)" width="100" height="132"></a></td>
</tr>
<tr>
<td><a href="jens_maurer.htm">Jens Maurer</a></td>
<td><a href="jens_maurer.jpg"><img border="0" src="jens_maurer_small.jpg" width="100" height="124"></a></td>
</tr>
<tr>
<td><a href="paul_moore.htm">Paul Moore</a></td>
<td><a href="paul_moore.jpg"><img border="0" src="paul_moore_small.jpg" alt="paul_moore.jpg (12023 bytes)" width="100" height="81"></a></td>
</tr>
<tr>
<td><a href="gary_powell.htm">Gary Powell</a></td>
<td><a href="gary_powell.jpg"><img border="0" src="gary_powell_small.jpg" alt="gary_powell.jpg (13577 bytes)" width="100" height="133"></a></td>
</tr>
<tr>
<td><a href="mark_rodgers.htm">Mark Rodgers</a></td>
<td><a href="mark_rodgers.jpg"><img border="0" src="mark_rodgers_small.jpg" alt="mark_rodgers.jpg (23035 bytes)" width="100" height="75"></a></td>
</tr>
<tr>
<td><a href="jeremy_siek.htm">Jeremy Siek</a></td>
<td><a href="jeremy_siek.jpg"><img border="0" src="jeremy_siek_small.jpg" alt="jeremy_siek.jpg (12867 bytes)" width="100" height="133"></a></td>
</tr>
</table>
</body>
</html>