--- boost1.41-1.41.0.orig/debian/libboost-doc.README.Debian +++ boost1.41-1.41.0/debian/libboost-doc.README.Debian @@ -0,0 +1,13 @@ + Building Boost.Python Examples + ------------------------------ + +1. Ensure package boost-build is installed (for bjam). + +2. Copy the contents of examples/libs/python/example elsewhere before +attempting to build, since the build creates files inside the example +directory. + +3. Change to the directory created in step 2, then "bjam test". + + + -- Steve M. Robbins , Sat, 30 May 2009 10:11:47 z --- boost1.41-1.41.0.orig/debian/bcp.1 +++ boost1.41-1.41.0/debian/bcp.1 @@ -0,0 +1,125 @@ +.\" ======================================================================= +.\" Copyright 2006 Domenico Andreoli +.\" +.\" Distributed under the Boost Software License, Version 1.0. (See +.\" accompanying file LICENSE_1_0.txt or copy at +.\" http://www.boost.org/LICENSE_1_0.txt) +.\" ======================================================================= +.TH BCP "1" "March 2006" "Boost C++ Libraries" "Boost C++ Libraries Documentation" +.SH NAME +bcp \- extract subsets of Boost +.SH SYNOPSIS +.B bcp +\fB\-\-list\fR [\fIoptions\fR] \fImodule\-list\fR +.br +.B bcp +[\fIoptions\fR] \fImodule\-list output\-path\fR +.br +.B bcp +\fB\-\-report\fR [\fIoptions\fR] \fImodule\-list html\-file\fR +.br +.B bcp +\fB\-\-help\fR +.SH DESCRIPTION +Copies all the files, including dependencies, found in \fImodule-list\fR +to \fIoutput-path\fR. \fIoutput-path\fR must be an existing path. +.PP +With \fB\-\-list\fR, prints the list of all the +files in \fImodule-list\fR, including dependencies. +.PP +With \fB\-\-report\fR, writes the HTML report to \fIhtml-file\fR. +.PP +With \fB\-\-help\fR, prints a quick usage reminder. +.PP +It is useful for Boost authors who want to distribute their library +separately from Boost and for Boost users who want to distribute a +subset of Boost with their application. +.SS \fImodule-list\fR +.PP +When the --scan option is not used, a list of Boost files or library names to copy. It can be: +.IP +\- The name of a tool: for example "build" will find "tools/build". +.IP +\- The name of a library: for example "regex". +.IP +\- The title of a header: for example "scoped_ptr" will find "boost/scoped_ptr.hpp". +.IP +\- The name of a header: for example "scoped_ptr.hpp" will find "boost/scoped_ptr.hpp". +.IP +\- The name of a file: for example "boost/regex.hpp". +.PP +When the --scan option is used, a list of (probably non-boost) files to scan for Boost dependencies, the files in the module list are not therefore copied/listed. +.SS File dependencies +C++ source files are scanned for #includes, all #includes present in the +Boost source tree will then be scanned for their dependencies and so on. +.PP +C++ source files are associated with the name of a library, if that +library has source code (and possibly build data), then include that +source in the dependencies. +.PP +C++ source files are checked for dependencies on Boost.Test (for example +to see if they use cpp_main as an entry point). +.PP +HTML files are scanned for immediate dependencies (images and style +sheets, but not links). +.SS +HTML report contains: +.PP +\- all the licenses in effect, plus the files using each license, and +the copyright holders using each license +.PP +\- any files with no recognizable license (please report these to the +Boost mailing lists) +.PP +\- any files with no recognizable copyright holders (please report these +to the Boost mailing lists) +.PP +\- all the copyright holders and the files on which they hold copyright +.PP +\- file dependency information - indicates the reason for the inclusion +of any particular file in the dependencies found +.SH OPTIONS +.TP +\fB\-\-boost\fR=\fIpath\fR +sets the location of the Boost tree to path +.TP +\fB\-\-scan\fR +treat the module list as a list of (possibly non\-boost) +files to scan for Boost dependencies +.TP +\fB\-\-cvs\fR +only copy files under CVS version control +.TP +\fB\-\-unix\-lines\fR +make sure that all copied files use Unix style line endings +.SH EXAMPLES +.TP +\fBbcp\fR scoped_ptr /foo +Copies boost/scoped_ptr.hpp and dependencies to /foo. +.TP +\fBbcp\fR boost/regex.hpp /foo +Copies boost/regex.hpp and all dependencies including the regex source +code (in libs/regex/src) and build files (in libs/regex/build) to /foo. +Does not copy the regex documentation, test or example code. +.TP +\fBbcp\fR regex /foo +Copies the full regex lib (in libs/regex) including dependencies (such +as the Boost.Test source required by the regex test programs) to /foo. +.TP +\fBbcp\fR regex config build /foo +Copies the full regex lib (in libs/regex) plus the config lib +(libs/config) and the build system (tools/build) to /foo including all +the dependencies. +.TP +\fBbcp \-\-scan \-\-boost\fR=/boost foo.cpp bar.cpp boost +Scans the [non-boost] files foo.cpp and bar.cpp for Boost dependencies +and copies those dependencies to the sub-directory boost. +.TP +\fBbcp \-\-report\fR regex.hpp boost-regex-report.html +Creates a HTML report called boost-regex-report.html for the Boost +module regex.hpp. +.SH AUTHORS +Author of bcp is John Maddock. +.PP +Author of this manpage is Domenico Andreoli, who copied stuff from bcp +--help and the HTML documentation. --- boost1.41-1.41.0.orig/debian/libboost-python-dev.README.Debian +++ boost1.41-1.41.0/debian/libboost-python-dev.README.Debian @@ -0,0 +1,31 @@ + Multiple Python Runtime Support + ------------------------------- + +The Debian Boost.Python packages support python versions: 2.4, 2.5. + +This is achieved by decorating the library names with the python +version. You can choose either to use Boost.Python with a specific +Python version, or use the default Python version. + + + Choosing the default Python + --------------------------- + +You may simply link with -lboost_python. This will always be the +default python version. + +These default symlinks are automatically updated when the Python +runtime version changes. + + + Choosing a specific Python Version + ---------------------------------- + +The library names are suffixed by "-py24" and "-py25", allowing you to +select the specific Python version desired. This holds true +for both the upstream names and the simplified Debian names. + +So link against -lboost_python-py24 for Python 2.4. + + + -- Steve M. Robbins , Mon, 16 Feb 2009 16:04:22 z --- boost1.41-1.41.0.orig/debian/quickbook.1 +++ boost1.41-1.41.0/debian/quickbook.1 @@ -0,0 +1,59 @@ +.TH QUICKBOOK "1" "July 2009" "Quickbook Version 1.4" "User Commands" +.SH NAME +Quickbook \- WikiWiki style documentation tool geared towards C++ documentation +.SH DESCRIPTION +.B QuickBook +is a WikiWiki style documentation tool geared towards C++ +documentation using simple rules and markup for simple formatting +tasks. +.B QuickBook +extends the WikiWiki concept. Like the WikiWiki, +QuickBook documents are simple text files. A single QuickBook document +can generate a fully linked set of nice HTML and PostScript/PDF +documents complete with images and syntax- colorized source code. +.PP +Features include: +.PP + * generate BoostBook xml, to generate HTML, PostScript and PDF + * simple markup to link to Doxygen-generated entities + * macro system for simple text substitution + * simple markup for italics, bold, preformatted, blurbs, code samples, tables, URLs, anchors, images, etc. + * automatic syntax coloring of code samples + * CSS support + +.SS "Allowed options:" +.TP +\fB\-\-help\fR +produce help message +.TP +\fB\-\-version\fR +print version string +.TP +\fB\-\-no\-pretty\-print\fR +disable XML pretty printing +.TP +\fB\-\-indent\fR arg +indent spaces +.TP +\fB\-\-linewidth\fR arg +line width +.TP +\fB\-\-input\-file\fR arg +input file +.TP +\fB\-\-output\-file\fR arg +output file +.TP +\fB\-\-debug\fR +debug mode (for developers) +.TP +\fB\-\-ms\-errors\fR +use Microsoft Visual Studio style error & warn +message format +.HP +\fB\-I\fR [ \fB\-\-include\-path\fR ] arg include path +.SH "SEE ALSO" +The full documentation for +.B Quickbook +is maintained in HTML; see +/usr/share/doc/libboostX.Y-doc/HTML/doc/html/quickbook.html --- boost1.41-1.41.0.orig/debian/libboost-python-dev.postinst.in +++ boost1.41-1.41.0/debian/libboost-python-dev.postinst.in @@ -0,0 +1,12 @@ +#! /bin/sh + +set -e + +update=/usr/share/python/runtime.d/libboost-python@PKGVERSION@-dev.rtupdate + +if which pyversions >/dev/null; then + $update rtupdate none $(pyversions -d) +fi + +#DEBHELPER# + --- boost1.41-1.41.0.orig/debian/compat +++ boost1.41-1.41.0/debian/compat @@ -0,0 +1 @@ +7 --- boost1.41-1.41.0.orig/debian/copyright +++ boost1.41-1.41.0/debian/copyright @@ -0,0 +1,161 @@ +This software is a collection of libraries from the Boost.org site. +Most of the libraries use the Boost Software License 1.0, which +reads as follows. + + + Boost Software License - Version 1.0 + ------------------------------------ + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +There are a few files under a license different from the Boost +Software License; however, all licenses do follow these guidelines: + +License requirements + + Must be simple to read and understand. + + Must grant permission to copy, use and modify the software for any + use (commercial and non-commercial) for no fee. + + Must require that the license appear on all copies of the software + source code. + + Must not require that the license appear with executables or other + binary uses of the library. + + Must not require that the source code be available for execution + or other binary uses of the library. + + May restrict the use of the name and description of the library to + the standard version found on the Boost web site. + + + + +Files in tools/jam are covered by + +/* + * /+\ + * +\ Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc. + * \+/ + * + * This file is part of jam. + * + * License is hereby granted to use this software and distribute it + * freely, as long as this copyright notice is retained and modifications + * are clearly marked. + * + * ALL WARRANTIES ARE HEREBY DISCLAIMED. + */ + +/* This file is ALSO: + * Copyright 2001-2004 David Abrahams. + * Distributed under the Boost Software License, Version 1.0. + * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + */ + + +or by + +/* + * Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers + * Copyright (c) 1991-1994 by Xerox Corporation. All rights reserved. + * Copyright (c) 1998-1999 by Silicon Graphics. All rights reserved. + * Copyright (c) 1999 by Hewlett-Packard Company. All rights reserved. + * + * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED + * OR IMPLIED. ANY USE IS AT YOUR OWN RISK. + * + * Permission is hereby granted to use or copy this program + * for any purpose, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + */ + + +Files installed under /usr/share/boostbook/xsl/caramel (used by binary +"boostbook") are covered by the following license: + +Software License, Version 1.0 + +Copyright 2002-2003, Trustees of Indiana University. +Copyright 2000-2001, University of Notre Dame. +All rights reserved. + +Indiana University has the exclusive rights to license this product under the +following license. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * All redistributions of source code must retain the above copyright notice, + the list of authors in the original source code, this list of conditions + and the disclaimer listed in this license; + + * All redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the disclaimer listed in this license + in the documentation and/or other materials provided with the distribution; + + * Any documentation included with all redistributions must include the + following acknowledgement: + + "This product includes software developed at the University of Notre Dame + and the Pervasive Technology Labs at Indiana University. For technical + information contact Andrew Lumsdaine at the Pervasive Technology Labs at + Indiana University. For administrative and license questions contact the + Advanced Research and Technology Institute at 351 West 10th Street. + Indianapolis, Indiana 46202, phone 317-278-4100, fax 317-274-5902." + + Alternatively, this acknowledgement may appear in the software itself, and + wherever such third-party acknowledgments normally appear. + + * The name Indiana University, the University of Notre Dame or "Caramel" + shall not be used to endorse or promote products derived from this software + without prior written permission from Indiana University. For written + permission, please contact Indiana University Advanced Research & + Technology Institute. + + * Products derived from this software may not be called "Caramel", nor may + Indiana University, the University of Notre Dame or "Caramel" appear in + their name, without prior written permission of Indiana University Advanced + Research & Technology Institute. + +Indiana University provides no reassurances that the source code provided does +not infringe the patent or any other intellectual property rights of any other +entity. Indiana University disclaims any liability to any recipient for claims +brought by any other entity based on infringement of intellectual property +rights or otherwise. + +LICENSEE UNDERSTANDS THAT SOFTWARE IS PROVIDED "AS IS" FOR WHICH NO WARRANTIES +AS TO CAPABILITIES OR ACCURACY ARE MADE. INDIANA UNIVERSITY GIVES NO WARRANTIES +AND MAKES NO REPRESENTATION THAT SOFTWARE IS FREE OF INFRINGEMENT OF THIRD +PARTY PATENT, COPYRIGHT, OR OTHER PROPRIETARY RIGHTS. INDIANA UNIVERSITY MAKES +NO WARRANTIES THAT SOFTWARE IS FREE FROM "BUGS", "VIRUSES", "TROJAN HORSES", +"TRAP DOORS", "WORMS", OR OTHER HARMFUL CODE. LICENSEE ASSUMES THE ENTIRE RISK +AS TO THE PERFORMANCE OF SOFTWARE AND/OR ASSOCIATED MATERIALS, AND TO THE +PERFORMANCE AND VALIDITY OF INFORMATION GENERATED USING SOFTWARE. --- boost1.41-1.41.0.orig/debian/control +++ boost1.41-1.41.0/debian/control @@ -0,0 +1,663 @@ +Source: boost1.41 +Homepage: http://www.boost.org/ +Section: libs +Priority: optional +Maintainer: Debian Boost Team +Uploaders: Steve M. Robbins , Domenico Andreoli +Build-Depends: debhelper (>= 7), quilt, bison, flex, docbook-to-man, xsltproc, doxygen, zlib1g-dev, libbz2-dev, libicu-dev, python-all-dev, python-support (>= 0.6), libopenmpi-dev +Build-Conflicts: boost-build, libopenmpi-dev (= 1.3.2-2) +XS-Python-Version: >= 2.4 +Vcs-Browser: http://svn.debian.org/wsvn/pkg-boost/boost/trunk/ +Vcs-Svn: svn://svn.debian.org/svn/pkg-boost/boost/trunk +Standards-Version: 3.8.0 + +Package: libboost1.41-dbg +Architecture: any +Section: debug +Priority: extra +Depends: ${misc:Depends}, ${shlibs:Depends}, libboost1.41-dev (= ${binary:Version}) +Conflicts: libboost-dbg (<< 1.35.0), libboost1.35-dbg, libboost1.36-dbg, libboost1.37-dbg, libboost1.38-dbg, libboost1.39-dbg, libboost1.40-dbg +Description: Boost C++ Libraries with debug symbols + This package forms part of the Boost C++ Libraries collection. + . + These libraries are built with debug symbols. They are useful to debug + programs which use Boost. These must be used also at build/link time. + +Package: libboost1.41-dev +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, ${shlibs:Depends}, libstdc++6-4.4-dev | libstdc++-dev +Suggests: libboost1.41-doc, libboost-date-time1.41-dev, libboost-filesystem1.41-dev, libboost-graph-parallel1.41-dev, libboost-graph1.41-dev, libboost-iostreams1.41-dev, libboost-math1.41-dev, libboost-mpi1.41-dev, libboost-program-options1.41-dev, libboost-python1.41-dev, libboost-regex1.41-dev, libboost-serialization1.41-dev, libboost-signals1.41-dev, libboost-system1.41-dev, libboost-test1.41-dev, libboost-thread1.41-dev, libboost-wave1.41-dev, xsltproc, doxygen, docbook-xml (>= 4.2), docbook-xsl (>= 1.73.2), default-jdk (>= 1.4), fop (>= 0.94) +Conflicts: bcp, + libboost-dev (<< 1.35.0), + libboost1.35-dev, + libboost1.36-dev, + libboost1.37-dev, + libboost1.38-dev, + libboost1.39-dev, + libboost1.40-dev, + libboost-date-time1.40-dev (<= 1.40.0-2), + libboost-filesystem1.40-dev (<= 1.40.0-2), + libboost-graph1.40-dev (<= 1.40.0-2), + libboost-graph-parallel1.40-dev (<= 1.40.0-2), + libboost-iostreams1.40-dev (<= 1.40.0-2), + libboost-math1.40-dev (<= 1.40.0-2), + libboost-mpi1.40-dev (<= 1.40.0-2), + libboost-mpi-python1.40-dev (<= 1.40.0-2), + libboost-program-options1.40-dev (<= 1.40.0-2), + libboost-python1.40-dev (<= 1.40.0-2), + libboost-regex1.40-dev (<= 1.40.0-2), + libboost-serialization1.40-dev (<= 1.40.0-2), + libboost-signals1.40-dev (<= 1.40.0-2), + libboost-system1.40-dev (<= 1.40.0-2), + libboost-test1.40-dev (<= 1.40.0-2), + libboost-thread1.40-dev (<= 1.40.0-2), + libboost-wave1.40-dev (<= 1.40.0-2) +Replaces: bcp +Provides: bcp +Description: Boost C++ Libraries development files + The Boost web site provides free, peer-reviewed, portable C++ source + libraries. The emphasis is on libraries which work well with the C++ + Standard Library. One goal is to establish "existing practice" and + provide reference implementations so that the Boost libraries are + suitable for eventual standardization. Some of the libraries have + already been proposed for inclusion in the C++ Standards Committee's + upcoming C++ Standard Library Technical Report. + . + This package provides headers and the auxiliary tools bcp, inspect, + boostbook and quickbook. + . + For the following subprojects separate packages exist: date-time, + filesystem, graph, iostreams, math, mpi, program_options, python, + regex, serialization, signals, system, test, thread, and wave. + +Package: libboost1.41-all-dev +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, + libboost1.41-dev, + libboost-date-time1.41-dev, + libboost-filesystem1.41-dev, + libboost-graph1.41-dev, + libboost-graph-parallel1.41-dev, + libboost-iostreams1.41-dev, + libboost-math1.41-dev, + libboost-mpi1.41-dev, + libboost-mpi-python1.41-dev, + libboost-program-options1.41-dev, + libboost-python1.41-dev, + libboost-regex1.41-dev, + libboost-serialization1.41-dev, + libboost-signals1.41-dev, + libboost-system1.41-dev, + libboost-test1.41-dev, + libboost-thread1.41-dev, + libboost-wave1.41-dev +Description: Boost C++ Libraries development files (ALL) + The Boost web site provides free, peer-reviewed, portable C++ source + libraries. The emphasis is on libraries which work well with the C++ + Standard Library. One goal is to establish "existing practice" and + provide reference implementations so that the Boost libraries are + suitable for eventual standardization. Some of the libraries have + already been proposed for inclusion in the C++ Standards Committee's + upcoming C++ Standard Library Technical Report. + . + This package provides the complete Boost development environment, + including all separately-packaged libraries. + +Package: libboost1.41-doc +Homepage: http://www.boost.org/libs/ +Architecture: all +Section: doc +Depends: ${misc:Depends} +Suggests: libboost1.41-dev (>= ${source:Version}) +Conflicts: libboost-doc (<< 1.35.0), libboost1.35-doc, libboost1.36-doc, libboost1.37-doc, libboost1.38-doc, libboost1.39-doc, libboost1.40-doc +Description: Boost.org libraries documentation + The Boost web site provides free, peer-reviewed, portable C++ source + libraries. The emphasis is on libraries which work well with the C++ + Standard Library. One goal is to establish "existing practice" and + provide reference implementations so that the Boost libraries are + suitable for eventual standardization. Some of the libraries have + already been proposed for inclusion in the C++ Standards Committee's + upcoming C++ Standard Library Technical Report. + . + This is documentation for the libboost1.41-dev package in HTML format. + Some pages point to header files provided in libboost1.41-dev package, + so it is suggested to install the latter as well. + +Package: libboost-date-time1.41.0 +Homepage: http://www.boost.org/libs/date_time/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: set of date-time libraries based on generic programming concepts + This package forms part of the Boost C++ Libraries collection. + . + These libraries are intended to make programming with dates and times + almost as simple and natural as programming with strings and integers. + +Package: libboost-date-time1.41-dev +Homepage: http://www.boost.org/libs/date_time/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-date-time1.41.0 (= ${binary:Version}), libboost-serialization1.41-dev (= ${binary:Version}) +Conflicts: libboost-date-time-dev (<< 1.35.0), libboost-date-time1.36-dev, libboost-date-time1.37-dev, libboost-date-time1.38-dev, libboost-date-time1.39-dev, libboost-date-time1.40-dev +Description: set of date-time libraries based on generic programming concepts + This package forms part of the Boost C++ Libraries collection. + . + These libraries are intended to make programming with dates and times + almost as simple and natural as programming with strings and integers. + +Package: libboost-filesystem1.41.0 +Homepage: http://boost.org/libs/filesystem/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: filesystem operations (portable paths, iteration over directories, etc) in C++ + This package forms part of the Boost C++ Libraries collection. + . + The Boost Filesystem Library provides portable facilities to query and + manipulate paths, files, and directories. The goal is to + facilitate portable script-like operations from within C++ programs. + +Package: libboost-filesystem1.41-dev +Homepage: http://boost.org/libs/filesystem/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-filesystem1.41.0 (= ${binary:Version}), libboost-system1.41-dev (= ${binary:Version}) +Conflicts: libboost-filesystem-dev (<< 1.35.0), libboost-filesystem1.35-dev, libboost-filesystem1.36-dev, libboost-filesystem1.37-dev, libboost-filesystem1.38-dev, libboost-filesystem1.39-dev, libboost-filesystem1.40-dev +Description: filesystem operations (portable paths, iteration over directories, etc) in C++ + This package forms part of the Boost C++ Libraries collection. + . + The Boost Filesystem Library provides portable facilities to query and + manipulate paths, files, and directories. The goal is to + facilitate portable script-like operations from within C++ programs. + +Package: libboost-graph1.41.0 +Homepage: http://www.boost.org/libs/graph/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Suggests: graphviz +Description: generic graph components and algorithms in C++ + This package forms part of the Boost C++ Libraries collection. + . + Graphs are mathematical abstractions that are useful for solving + many types of problems in computer science. Consequently, these + abstractions must also be represented in computer programs. A + standardized generic interface for traversing graphs is of utmost + importance to encourage reuse of graph algorithms and data structures. + +Package: libboost-graph1.41-dev +Homepage: http://www.boost.org/libs/graph/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-serialization1.41-dev (= ${binary:Version}), libboost-test1.41-dev (= ${binary:Version}) +Recommends: libboost-graph1.41.0 (= ${binary:Version}) +Conflicts: libboost-graph-dev (<< 1.35.0), libboost-graph1.35-dev, libboost-graph1.36-dev, libboost-graph1.37-dev, libboost-graph1.38-dev, libboost-graph1.39-dev, libboost-graph1.40-dev +Description: generic graph components and algorithms in C++ + This package forms part of the Boost C++ Libraries collection. + . + Graphs are mathematical abstractions that are useful for solving + many types of problems in computer science. Consequently, these + abstractions must also be represented in computer programs. A + standardized generic interface for traversing graphs is of utmost + importance to encourage reuse of graph algorithms and data structures. + +Package: libboost-graph-parallel1.41.0 +Homepage: http://www.boost.org/libs/graph_parallel/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Suggests: graphviz +Description: generic graph components and algorithms in C++ + This package forms part of the Boost C++ Libraries collection. + . + The Parallel Boost Graph Library is an extension to the Boost Graph Library + (BGL) for parallel and distributed computing. It offers distributed graphs + and graph algorithms to exploit coarse-grained parallelism along with + parallel algorithms that exploit fine-grained parallelism, while retaining + the same interfaces as the (sequential) BGL. Code written using the sequential + BGL should be easy to parallelize with the parallel BGL. + +Package: libboost-graph-parallel1.41-dev +Homepage: http://www.boost.org/libs/graph_parallel/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-serialization1.41-dev (= ${binary:Version}), libboost-test1.41-dev (= ${binary:Version}) +Conflicts: libboost-graph-parallel1.40-dev +Recommends: libboost-graph-parallel1.41.0 (= ${binary:Version}) +Description: generic graph components and algorithms in C++ + This package forms part of the Boost C++ Libraries collection. + . + The Parallel Boost Graph Library is an extension to the Boost Graph Library + (BGL) for parallel and distributed computing. It offers distributed graphs + and graph algorithms to exploit coarse-grained parallelism along with + parallel algorithms that exploit fine-grained parallelism, while retaining + the same interfaces as the (sequential) BGL. Code written using the sequential + BGL should be easy to parallelize with the parallel BGL. + +Package: libboost-iostreams1.41.0 +Homepage: http://www.boost.org/libs/iostreams/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: Boost.Iostreams Library + This package forms part of the Boost C++ Libraries collection. + . + Boost.Iostreams are a collection of concepts and set of templates + which turn models of these concepts into C++ standard library streams + and stream buffers. + +Package: libboost-iostreams1.41-dev +Homepage: http://www.boost.org/libs/iostreams/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-regex1.41-dev (= ${binary:Version}), libboost-iostreams1.41.0 (= ${binary:Version}) +Conflicts: libboost-iostreams-dev (<< 1.35.0), libboost-iostreams1.35-dev, libboost-iostreams1.36-dev, libboost-iostreams1.37-dev, libboost-iostreams1.38-dev, libboost-iostreams1.39-dev, libboost-iostreams1.40-dev +Description: Boost.Iostreams Library development files + This package forms part of the Boost C++ Libraries collection. + . + Boost.Iostreams are a collection of concepts and set of templates + which turn models of these concepts into C++ standard library streams + and stream buffers. + +Package: libboost-math1.41.0 +Homepage: http://www.boost.org/libs/math/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: Boost.Math Library + This package forms part of the Boost C++ Libraries collection. + . + This library is divided into three interconnected parts: + * Statistical Distributions: Provides a reasonably comprehensive set of + statistical distributions, upon which higher level statistical tests + can be built. + * Mathematical Special Functions: Provides a small number of high quality + special functions, initially these were concentrated on functions used in + statistical applications along with those in the Technical Report on + C++ Library Extensions. + * Implementation Toolkit: Provides many of the tools required to implement + mathematical special functions. + +Package: libboost-math1.41-dev +Homepage: http://www.boost.org/libs/math/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-math1.41.0 (= ${binary:Version}) +Conflicts: libboost-math1.40-dev +Description: Boost.Math Library development files + This package forms part of the Boost C++ Libraries collection. + . + This library is divided into three interconnected parts: + * Statistical Distributions: Provides a reasonably comprehensive set of + statistical distributions, upon which higher level statistical tests + can be built. + * Mathematical Special Functions: Provides a small number of high quality + special functions, initially these were concentrated on functions used in + statistical applications along with those in the Technical Report on + C++ Library Extensions. + * Implementation Toolkit: Provides many of the tools required to implement + mathematical special functions. + +Package: libboost-mpi1.41.0 +Homepage: http://www.boost.org/doc/html/mpi.html +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: C++ interface to the Message Passing Interface (MPI) + This package forms part of the Boost C++ Libraries collection. + . + The Boost.MPI library provides a C++ interface to MPI that + supports modern C++ development styles, including complete support for + user-defined data types and C++ Standard Library types, arbitrary function + objects for collective algorithms, and the use of modern C++ library + techniques to maintain maximal efficiency. + +Package: libboost-mpi1.41-dev +Homepage: http://www.boost.org/doc/html/mpi.html +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-serialization1.41-dev (= ${binary:Version}), libboost-mpi1.41.0 (= ${binary:Version}), libopenmpi-dev +Suggests: libboost-graph1.41-dev +Conflicts: libboost-mpi1.37-dev, libboost-mpi1.38-dev, libboost-mpi1.39-dev, libboost-mpi1.40-dev +Description: C++ interface to the Message Passing Interface (MPI) + This package forms part of the Boost C++ Libraries collection. + . + The Boost.MPI library provides a C++ interface to MPI that + supports modern C++ development styles, including complete support for + user-defined data types and C++ Standard Library types, arbitrary function + objects for collective algorithms, and the use of modern C++ library + techniques to maintain maximal efficiency. + +Package: libboost-mpi-python1.41.0 +Homepage: http://www.boost.org/doc/html/mpi/python.html +Architecture: any +Section: python +Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends} +Conflicts: libboost-mpi-python1.40.0 +Description: C++ interface to the Message Passing Interface (MPI), Python Bindings + This package forms part of the Boost C++ Libraries collection. + . + The Boost.MPI library provides a C++ interface to MPI that + supports modern C++ development styles, including complete support for + user-defined data types and C++ Standard Library types, arbitrary function + objects for collective algorithms, and the use of modern C++ library + techniques to maintain maximal efficiency. + . + This package provides Python Bindings to the C++ interface. + +Package: libboost-mpi-python1.41-dev +Homepage: http://www.boost.org/doc/html/mpi/python.html +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost-mpi1.41-dev (= ${binary:Version}), libboost-mpi-python1.41.0 (= ${binary:Version}) +Conflicts: libboost-mpi-python1.40-dev +Description: C++ interface to the Message Passing Interface (MPI), Python Bindings + This package forms part of the Boost C++ Libraries collection. + . + The Boost.MPI library provides a C++ interface to MPI that + supports modern C++ development styles, including complete support for + user-defined data types and C++ Standard Library types, arbitrary function + objects for collective algorithms, and the use of modern C++ library + techniques to maintain maximal efficiency. + . + This package provides Python Bindings to the C++ interface. + +Package: libboost-program-options1.41.0 +Homepage: http://www.boost.org/libs/program_options/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: program options library for C++ + This package forms part of the Boost C++ Libraries collection. + . + Library to let program developers obtain program options, that is + (name, value) pairs from the user, via conventional methods such as + command line and config file. + +Package: libboost-program-options1.41-dev +Homepage: http://www.boost.org/libs/program_options/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-program-options1.41.0 (= ${binary:Version}) +Conflicts: libboost-program-options-dev (<< 1.35.0), libboost-program-options1.35-dev, libboost-program-options1.36-dev, libboost-program-options1.37-dev, libboost-program-options1.38-dev, libboost-program-options1.39-dev, libboost-program-options1.40-dev +Description: program options library for C++ + This package forms part of the Boost C++ Libraries collection. + . + Library to let program developers obtain program options, that is + (name, value) pairs from the user, via conventional methods such as + command line and config file. + +Package: libboost-python1.41.0 +Homepage: http://www.boost.org/libs/python/ +Architecture: any +Section: python +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: Boost.Python Library + This package forms part of the Boost C++ Libraries collection. + . + The Boost Python Library is used to quickly and easily export a C++ + library to Python such that the Python interface is very similar to + the C++ interface. It is designed to be minimally intrusive on your + C++ design. In most cases, you should not have to alter your C++ + classes in any way in order to use them with Boost.Python. The + system should simply "reflect" your C++ classes and functions into + Python. The major features of Boost.Python include support for: + Subclassing extension types in Python, Overriding virtual functions + in Python, Member function Overloading, Automatic wrapping of + numeric operators among others. + +Package: libboost-python1.41-dev +Homepage: http://www.boost.org/libs/python/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-python1.41.0 (= ${binary:Version}), python-dev, ${python:Depends}, python (>= 2.5) | python-celementtree | python-elementtree, gccxml +Suggests: libboost1.41-doc +Conflicts: libboost-python-dev (<< 1.35.0), pyste, libboost-python1.35-dev, libboost-python1.36-dev, libboost-python1.37-dev, libboost-python1.38-dev, libboost-python1.39-dev, libboost-python1.40-dev +Description: Boost.Python Library development files + This package forms part of the Boost C++ Libraries collection. + . + The Boost Python Library is used to quickly and easily export a C++ + library to Python such that the Python interface is very similar to + the C++ interface. It is designed to be minimally intrusive on your + C++ design. In most cases, you should not have to alter your C++ + classes in any way in order to use them with Boost.Python. The + system should simply "reflect" your C++ classes and functions into + Python. The major features of Boost.Python include support for: + Subclassing extension types in Python, Overriding virtual functions + in Python, Member function Overloading, Automatic wrapping of + numeric operators among others. + . + This package also contains the pyste Boost.Python code generator that + allows the user to specify classes and functions to be exported using + a simple interface file, which following the Boost.Python's + philosophy, is simple Python code. + . + This package allows development of a Python interface for all current + versions of Python in Debian. Code using this library will need also + one of the Python development packages. + +Package: libboost-regex1.41.0 +Homepage: http://www.boost.org/libs/regex/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: regular expression library for C++ + This package forms part of the Boost C++ Libraries collection. + . + Regular expressions are a form of pattern-matching that are often + used in text processing; many users will be familiar with the Unix + utilities grep, sed and awk, and the programming language perl, each + of which make extensive use of regular expressions. Traditionally C++ + users have been limited to the POSIX C APIs for manipulating regular + expressions, and while regex does provide these APIs, they do not + represent the best way to use the library. For example regex can cope + with wide character strings, or search and replace operations (in a + manner analogous to either sed or perl), something that traditional C + libraries can not do. + +Package: libboost-regex1.41-dev +Homepage: http://www.boost.org/libs/regex/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-regex1.41.0 (= ${binary:Version}), libicu-dev +Conflicts: libboost-regex-dev (<< 1.35.0), libboost-regex1.35-dev, libboost-regex1.36-dev, libboost-regex1.37-dev, libboost-regex1.38-dev, libboost-regex1.39-dev, libboost-regex1.40-dev +Description: regular expression library for C++ + This package forms part of the Boost C++ Libraries collection. + . + Regular expressions are a form of pattern-matching that are often + used in text processing; many users will be familiar with the Unix + utilities grep, sed and awk, and the programming language perl, each + of which make extensive use of regular expressions. Traditionally C++ + users have been limited to the POSIX C APIs for manipulating regular + expressions, and while regex does provide these APIs, they do not + represent the best way to use the library. For example regex can cope + with wide character strings, or search and replace operations (in a + manner analogous to either sed or perl), something that traditional C + libraries can not do. + +Package: libboost-serialization1.41.0 +Homepage: http://www.boost.org/libs/serialization/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: serialization library for C++ + This package forms part of the Boost C++ Libraries collection, + containing the following functionalities: + . + * proper restoration of pointers to shared data + * serialization of STL containers and other commonly used templates + * data portability - streams of bytes created on one platform should + be readable on any other + * archive interface must be rich enough to permit the creation of an + archive that presents serialized data as XML in a useful manner + . + Here, "serialization" means the reversible deconstruction of an + arbitrary set of C++ data structures to a sequence of bytes. + archive: to refer to a specific rendering of this stream of bytes. + +Package: libboost-serialization1.41-dev +Homepage: http://www.boost.org/libs/serialization/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-serialization1.41.0 (= ${binary:Version}) +Conflicts: libboost-serialization-dev (<< 1.35.0), libboost-serialization1.35-dev, libboost-serialization1.36-dev, libboost-serialization1.37-dev, libboost-serialization1.38-dev, libboost-serialization1.39-dev, libboost-serialization1.40-dev +Description: serialization library for C++ + This package forms part of the Boost C++ Libraries collection, + containing the following functionalities: + . + * proper restoration of pointers to shared data + * serialization of STL containers and other commonly used templates + * data portability - streams of bytes created on one platform should + be readable on any other + * archive interface must be rich enough to permit the creation of an + archive that presents serialized data as XML in a useful manner + . + Here, "serialization" means the reversible deconstruction of an + arbitrary set of C++ data structures to a sequence of bytes. + archive: to refer to a specific rendering of this stream of bytes. + +Package: libboost-signals1.41.0 +Homepage: http://www.boost.org/libs/signals/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: managed signals and slots library for C++ + This package forms part of the Boost C++ Libraries collection. + . + Signals represent callbacks with multiple targets, and are also + called publishers or events in similar systems. Signals are connected + to some set of slots, which are callback receivers (also called event + targets or subscribers), which are called when the signal is + "emitted." + +Package: libboost-signals1.41-dev +Homepage: http://www.boost.org/libs/signals/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-signals1.41.0 (= ${binary:Version}) +Conflicts: libboost-signals-dev (<< 1.35.0), libboost-signals1.35-dev, libboost-signals1.36-dev, libboost-signals1.37-dev, libboost-signals1.38-dev, libboost-signals1.39-dev, libboost-signals1.40-dev +Description: managed signals and slots library for C++ + This package forms part of the Boost C++ Libraries collection. + . + Signals represent callbacks with multiple targets, and are also + called publishers or events in similar systems. Signals are connected + to some set of slots, which are callback receivers (also called event + targets or subscribers), which are called when the signal is + "emitted." + +Package: libboost-system1.41.0 +Homepage: http://www.boost.org/libs/system/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: Operating system (e.g. diagnostics support) library + This package forms part of the Boost C++ Libraries collection. + . + The Boost System library provides simple, light-weight error_code + objects that encapsulate system-specific error code values, yet also + provide access to more abstract and portable error conditions via + error_condition objects. Because error_code objects can represent + errors from sources other than the operating system, including + user-defined sources, each error_code and error_condition has an + associated error_category. + +Package: libboost-system1.41-dev +Homepage: http://www.boost.org/libs/system/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-system1.41.0 (= ${binary:Version}) +Conflicts: libboost-system1.38-dev, libboost-system1.39-dev, libboost-system1.40-dev +Description: Operating system (e.g. diagnostics support) library + This package forms part of the Boost C++ Libraries collection. + . + The Boost System library provides simple, light-weight error_code + objects that encapsulate system-specific error code values, yet also + provide access to more abstract and portable error conditions via + error_condition objects. Because error_code objects can represent + errors from sources other than the operating system, including + user-defined sources, each error_code and error_condition has an + associated error_category. + +Package: libboost-test1.41.0 +Homepage: http://www.boost.org/libs/test/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: components for writing and executing test suites + This package forms part of the Boost C++ Libraries collection. The + library contains several components. + . + * Basic execution, error detection, and reporting facility. + * Facilities to monitor program execution and produce error reports. + * Unit test framework to simplify writing test cases. + +Package: libboost-test1.41-dev +Homepage: http://www.boost.org/libs/test/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-test1.41.0 (= ${binary:Version}) +Conflicts: libboost-test-dev (<< 1.35.0), libboost-test1.35-dev, libboost-test1.36-dev, libboost-test1.37-dev, libboost-test1.38-dev, libboost-test1.39-dev, libboost-test1.40-dev +Description: components for writing and executing test suites + This package forms part of the Boost C++ Libraries collection. The + library contains several components. + . + * Basic execution, error detection, and reporting facility. + * Facilities to monitor program execution and produce error reports. + * Unit test framework to simplify writing test cases. + +Package: libboost-thread1.41.0 +Homepage: http://www.boost.org/libs/thread/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: portable C++ multi-threading + This package forms part of the Boost C++ Libraries collection. + . + Toolkit for writing C++ programs that execute as multiple, + asynchronous, independent, threads-of-execution. Each thread has its + own machine state including program instruction counter and + registers. + +Package: libboost-thread1.41-dev +Homepage: http://www.boost.org/libs/thread/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-date-time1.41-dev (= ${binary:Version}), libboost-thread1.41.0 (= ${binary:Version}) +Conflicts: libboost-thread-dev (<< 1.35.0), libboost-thread1.35-dev, libboost-thread1.36-dev, libboost-thread1.37-dev, libboost-thread1.38-dev, libboost-thread1.39-dev, libboost-thread1.40-dev +Description: portable C++ multi-threading + This package forms part of the Boost C++ Libraries collection. + . + Toolkit for writing C++ programs that execute as multiple, + asynchronous, independent, threads-of-execution. Each thread has its + own machine state including program instruction counter and + registers. + +Package: libboost-wave1.41.0 +Homepage: http://www.boost.org/libs/wave/ +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: C99/C++ preprocessor library + This package forms part of the Boost C++ Libraries collection. + . + The Wave C++ preprocessor library is a Standards conformant + implementation of the mandated C99/C++ preprocessor functionality + packed behind a simple to use interface, which integrates well with + the well known idioms of the Standard Template Library (STL). + +Package: libboost-wave1.41-dev +Homepage: http://www.boost.org/libs/wave/ +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, libboost1.41-dev (= ${binary:Version}), libboost-serialization1.41-dev (= ${binary:Version}), libboost-wave1.41.0 (= ${binary:Version}), libboost-filesystem1.41-dev (= ${binary:Version}) +Conflicts: libboost-wave-dev (<< 1.35.0), libboost-wave1.35-dev, libboost-wave1.36-dev, libboost-wave1.37-dev, libboost-wave1.38-dev, libboost-wave1.39-dev, libboost-wave1.40-dev +Description: C99/C++ preprocessor library + This package forms part of the Boost C++ Libraries collection. + . + The Wave C++ preprocessor library is a Standards conformant + implementation of the mandated C99/C++ preprocessor functionality + packed behind a simple to use interface, which integrates well with + the well known idioms of the Standard Template Library (STL). --- boost1.41-1.41.0.orig/debian/libboost-mpi-python-dev.postinst.in +++ boost1.41-1.41.0/debian/libboost-mpi-python-dev.postinst.in @@ -0,0 +1,12 @@ +#! /bin/sh + +set -e + +update=/usr/share/python/runtime.d/libboost-mpi-python@PKGVERSION@-dev.rtupdate + +if which pyversions >/dev/null; then + $update rtupdate none $(pyversions -d) +fi + +#DEBHELPER# + --- boost1.41-1.41.0.orig/debian/patches/sh4.patch +++ boost1.41-1.41.0/debian/patches/sh4.patch @@ -0,0 +1,17 @@ +Add support for Renesas SH CPU. +Patch based on initial work by Nobuhiro Iwamatsu +See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535930 + +--- boost1.39-1.39.0.orig/boost/smart_ptr/detail/sp_has_sync.hpp ++++ boost1.39-1.39.0/boost/smart_ptr/detail/sp_has_sync.hpp +@@ -40,6 +40,10 @@ + #undef BOOST_SP_HAS_SYNC + #endif + ++#if defined( __sh__ ) ++#undef BOOST_SP_HAS_SYNC ++#endif ++ + #if defined( __INTEL_COMPILER ) && !defined( __ia64__ ) + #undef BOOST_SP_HAS_SYNC + #endif --- boost1.41-1.41.0.orig/debian/patches/boost-test-invalid-read.patch +++ boost1.41-1.41.0/debian/patches/boost-test-invalid-read.patch @@ -0,0 +1,33 @@ +Fix for #538946 +Reported upstream as https://svn.boost.org/trac/boost/ticket/2647 +Patch taken from http://www.nabble.com/-Boost.Test--valgrind-complains-about-invalid-reads-td20500154.html + + +--- boost1.40-1.40.0.orig/boost/test/impl/framework.ipp ++++ boost1.40-1.40.0/boost/test/impl/framework.ipp +@@ -125,12 +125,7 @@ + { + while( !m_test_units.empty() ) { + test_unit_store::value_type const& tu = *m_test_units.begin(); +- +- // the delete will erase this element from map +- if( ut_detail::test_id_2_unit_type( tu.second->p_id ) == tut_suite ) +- delete static_cast(tu.second); +- else +- delete static_cast(tu.second); ++ delete tu.second; + } + } + +--- boost1.40-1.40.0.orig/boost/test/unit_test_suite_impl.hpp ++++ boost1.40-1.40.0/boost/test/unit_test_suite_impl.hpp +@@ -76,8 +76,7 @@ + + void increase_exp_fail( unsigned num ); + +-protected: +- ~test_unit(); ++ virtual ~test_unit(); + + private: + // Data members --- boost1.41-1.41.0.orig/debian/patches/mips-asm.patch +++ boost1.41-1.41.0/debian/patches/mips-asm.patch @@ -0,0 +1,42 @@ +--- boost1.39-1.39.0.obsolete.0.994080839927658.orig/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp ++++ boost1.39-1.39.0.obsolete.0.994080839927658/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +@@ -37,9 +37,12 @@ + __asm__ __volatile__ + ( + "0:\n\t" ++ ".set push\n\t" ++ ".set mips2\n\t" + "ll %0, %1\n\t" + "addiu %0, 1\n\t" + "sc %0, %1\n\t" ++ ".set pop\n\t" + "beqz %0, 0b": + "=&r"( tmp ), "=m"( *pw ): + "m"( *pw ) +@@ -55,9 +58,12 @@ + __asm__ __volatile__ + ( + "0:\n\t" ++ ".set push\n\t" ++ ".set mips2\n\t" + "ll %1, %2\n\t" + "addiu %0, %1, -1\n\t" + "sc %0, %2\n\t" ++ ".set pop\n\t" + "beqz %0, 0b\n\t" + "addiu %0, %1, -1": + "=&r"( rv ), "=&r"( tmp ), "=m"( *pw ): +@@ -78,10 +84,13 @@ + __asm__ __volatile__ + ( + "0:\n\t" ++ ".set push\n\t" ++ ".set mips2\n\t" + "ll %0, %2\n\t" + "beqz %0, 1f\n\t" + "addiu %1, %0, 1\n\t" + "sc %1, %2\n\t" ++ ".set pop\n\t" + "beqz %1, 0b\n\t" + "addiu %0, %0, 1\n\t" + "1:": --- boost1.41-1.41.0.orig/debian/patches/jam-wall-clean.patch +++ boost1.41-1.41.0/debian/patches/jam-wall-clean.patch @@ -0,0 +1,76 @@ +--- boost1.38-1.38.0.orig/tools/jam/src/expand.c ++++ boost1.38-1.38.0/tools/jam/src/expand.c +@@ -82,7 +82,7 @@ + int depth; + + if ( DEBUG_VAREXP ) +- printf( "expand '%.*s'\n", end - in, in ); ++ printf( "expand '%.*s'\n", (int)(end - in), in ); + + /* This gets a lot of cases: $(<) and $(>). */ + if +--- boost1.38-1.38.0.orig/tools/jam/src/class.c ++++ boost1.38-1.38.0/tools/jam/src/class.c +@@ -119,7 +119,7 @@ + } + else + { +- hashenter( classes, (HASHDATA * *)&pp ); ++ (void)hashenter( classes, (HASHDATA * *)&pp ); + } + check_defined( bases ); + +--- boost1.38-1.38.0.orig/tools/jam/src/modules.c ++++ boost1.38-1.38.0/tools/jam/src/modules.c +@@ -143,7 +143,7 @@ + { + char * s = module_names->string; + char * * ss = &s; +- hashenter( h, (HASHDATA * *)&ss ); ++ (void)hashenter( h, (HASHDATA * *)&ss ); + } + + PROFILE_EXIT( IMPORT_MODULE ); +--- boost1.38-1.38.0.orig/tools/jam/src/search.c ++++ boost1.38-1.38.0/tools/jam/src/search.c +@@ -213,7 +213,7 @@ + /* CONSIDER: we probably should issue a warning is another file + is explicitly bound to the same location. This might break + compatibility, though. */ +- hashenter( explicit_bindings, (HASHDATA * *)&ba ); ++ (void)hashenter( explicit_bindings, (HASHDATA * *)&ba ); + } + + /* prepare a call to BINDRULE if the variable is set */ +--- boost1.38-1.38.0.orig/tools/jam/src/native.c ++++ boost1.38-1.38.0/tools/jam/src/native.c +@@ -31,6 +31,6 @@ + } + n.procedure = parse_make( f, P0, P0, P0, C0, C0, 0 ); + n.version = version; +- hashenter(m->native_rules, (HASHDATA**)&np); ++ (void)hashenter(m->native_rules, (HASHDATA**)&np); + } + } +--- boost1.38-1.38.0.orig/tools/jam/src/hash.c ++++ boost1.38-1.38.0/tools/jam/src/hash.c +@@ -448,7 +448,7 @@ + run = here; + } + +- printf( "%s table: %d+%d+%d (%dK+%ldK) items+table+hash, %f density\n", ++ printf( "%s table: %d+%d+%d (%dK+%zdK) items+table+hash, %f density\n", + hp->name, + count, + hp->items.nel, +--- boost1.38-1.38.0.orig/tools/jam/src/hcache.c ++++ boost1.38-1.38.0/tools/jam/src/hcache.c +@@ -166,7 +166,7 @@ + { + if ( !s ) + s = ""; +- fprintf( f, "%lu\t%s\n", strlen( s ), s ); ++ fprintf( f, "%zu\t%s\n", strlen( s ), s ); + } + + --- boost1.41-1.41.0.orig/debian/patches/python2.5-elementtree.patch +++ boost1.41-1.41.0/debian/patches/python2.5-elementtree.patch @@ -0,0 +1,26 @@ +# Debian bug #489022 +# Reported upstream as http://svn.boost.org/trac/boost/ticket/2208 + +--- boost1.35-1.35.0.orig/libs/python/pyste/src/Pyste/GCCXMLParser.py ++++ boost1.35-1.35.0/libs/python/pyste/src/Pyste/GCCXMLParser.py +@@ -4,12 +4,16 @@ + # http://www.boost.org/LICENSE_1_0.txt) + + from declarations import * +-# try to use cElementTree if avaiable + try: +- from cElementTree import ElementTree ++ # try to use internal elementtree ++ from xml.etree.cElementTree import ElementTree + except ImportError: +- # fall back to the normal elementtree +- from elementtree.ElementTree import ElementTree ++ # try to use cElementTree if avaiable ++ try: ++ from cElementTree import ElementTree ++ except ImportError: ++ # fall back to the normal elementtree ++ from elementtree.ElementTree import ElementTree + from xml.parsers.expat import ExpatError + from copy import deepcopy + from utils import enumerate --- boost1.41-1.41.0.orig/debian/patches/boost-python-examples.patch +++ boost1.41-1.41.0/debian/patches/boost-python-examples.patch @@ -0,0 +1,32 @@ +Patch courtesy of Georg Schmid +http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=452410#17 + + +--- boost1.38-1.38.0.orig/libs/python/example/Jamroot ++++ boost1.38-1.38.0/libs/python/example/Jamroot +@@ -2,16 +2,17 @@ + # Software License, Version 1.0. (See accompanying + # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +-# Specify the path to the Boost project. If you move this project, +-# adjust this path to refer to the Boost root directory. +-use-project boost +- : ../../.. ; ++using python ; ++ ++# Specify that the boost-python library exists under the name ++# boost_python. That is, because the library was installed at the ++# standard search path as /usr/lib/libboost_python.so, bjam will find ++# it automatically. No need to specify the absolute path. ++lib libboost_python : : boost_python-mt ; + + # Set up the project-wide requirements that everything uses the +-# boost_python library from the project whose global ID is +-# /boost/python. +-project +- : requirements /boost/python//boost_python ; ++# boost_python library. ++project : requirements libboost_python ; + + # Declare the three extension modules. You can specify multiple + # source files after the colon separated by spaces. --- boost1.41-1.41.0.orig/debian/patches/hurd-execution_monitor.patch +++ boost1.41-1.41.0/debian/patches/hurd-execution_monitor.patch @@ -0,0 +1,204 @@ +Description: Avoid build problem on hurd + Hurd does not define sigaction::sa_handler so + implement logic using basic sa_handler. +Author: Pino Toscano +Bug: 552383 +Forwarded: not yet + +--- boost1.40-1.40.0.orig/boost/test/impl/execution_monitor.ipp ++++ boost1.40-1.40.0/boost/test/impl/execution_monitor.ipp +@@ -264,22 +264,37 @@ + public: + // Constructor + system_signal_exception() ++#ifdef SA_SIGINFO + : m_sig_info( 0 ) + , m_context( 0 ) ++#else ++ : m_sig( 0 ) ++#endif + {} + + // Access methods ++#ifdef SA_SIGINFO + void operator()( siginfo_t* i, void* c ) + { + m_sig_info = i; + m_context = c; + } ++#else ++ void operator()( int s ) ++ { ++ m_sig = s; ++ } ++#endif + void report() const; + + private: + // Data members ++#ifdef SA_SIGINFO + siginfo_t* m_sig_info; // system signal detailed info + void* m_context; // signal context ++#else ++ int m_sig; // sistem signal ++#endif + }; + + //____________________________________________________________________________// +@@ -287,6 +302,7 @@ + void + system_signal_exception::report() const + { ++#ifdef SA_SIGINFO + if( !m_sig_info ) + return; // no error actually occur? + +@@ -571,6 +587,59 @@ + default: + report_error( execution_exception::system_error, "unrecognized signal" ); + } ++#else ++ if( !m_sig ) ++ return; // no error actually occur? ++ ++ switch( m_sig ) { ++ case SIGILL: ++ report_error( execution_exception::system_fatal_error, ++ "signal: SIGILL (illegal instruction)" ); ++ break; ++ ++ case SIGFPE: ++ report_error( execution_exception::system_error, ++ "signal: SIGFPE (errnoneous arithmetic operations)" ); ++ break; ++ ++ case SIGSEGV: ++ report_error( execution_exception::system_fatal_error, ++ "signal: SIGSEGV (memory access violation)" ); ++ break; ++ ++ case SIGBUS: ++ report_error( execution_exception::system_fatal_error, ++ "signal: SIGSEGV (memory access violation)" ); ++ break; ++ ++ case SIGCHLD: ++ report_error( execution_exception::system_fatal_error, ++ "signal: SIGCHLD (child process has terminated)" ); ++ break; ++ ++#if defined(BOOST_TEST_CATCH_SIGPOLL) ++ ++ case SIGPOLL: ++ report_error( execution_exception::system_error, ++ "signal: SIGPOLL (asynchronous I/O event occured)" ); ++ break; ++ ++#endif ++ ++ case SIGABRT: ++ report_error( execution_exception::system_error, ++ "signal: SIGABRT (application abort requested)" ); ++ break; ++ ++ case SIGALRM: ++ report_error( execution_exception::timeout_error, ++ "signal: SIGALRM (timeout while executing function)" ); ++ break; ++ ++ default: ++ report_error( execution_exception::system_error, "unrecognized signal" ); ++ } ++#endif + } + + //____________________________________________________________________________// +@@ -581,8 +650,13 @@ + + // Forward declaration + extern "C" { ++#ifdef SA_SIGINFO + static void execution_monitor_jumping_signal_handler( int sig, siginfo_t* info, void* context ); + static void execution_monitor_attaching_signal_handler( int sig, siginfo_t* info, void* context ); ++#else ++static void execution_monitor_jumping_signal_handler( int sig ); ++static void execution_monitor_attaching_signal_handler( int sig ); ++#endif + } + + class signal_action { +@@ -625,9 +699,14 @@ + return; + } + ++#ifdef SA_SIGINFO + m_new_action.sa_flags |= SA_SIGINFO; + m_new_action.sa_sigaction = attach_dbg ? &execution_monitor_attaching_signal_handler + : &execution_monitor_jumping_signal_handler; ++#else ++ m_new_action.sa_handler = attach_dbg ? &execution_monitor_attaching_signal_handler ++ : &execution_monitor_jumping_signal_handler; ++#endif + BOOST_TEST_SYS_ASSERT( sigemptyset( &m_new_action.sa_mask ) != -1 ); + + #ifdef BOOST_TEST_USE_ALT_STACK +@@ -769,6 +848,7 @@ + + extern "C" { + ++#ifdef SA_SIGINFO + static bool ignore_sigchild( siginfo_t* info ) + { + return info->si_signo == SIGCHLD +@@ -781,9 +861,16 @@ + && (int)info->si_status == 0; + #endif + } ++#else ++static bool ignore_sigchild( int sig ) ++{ ++ return sig == SIGCHLD; ++} ++#endif + + //____________________________________________________________________________// + ++#ifdef SA_SIGINFO + static void execution_monitor_jumping_signal_handler( int sig, siginfo_t* info, void* context ) + { + if( ignore_sigchild( info ) ) +@@ -810,6 +897,34 @@ + + //____________________________________________________________________________// + ++#else ++static void execution_monitor_jumping_signal_handler( int sig ) ++{ ++ if( ignore_sigchild( sig ) ) ++ return; ++ ++ signal_handler::sys_sig()( sig ); ++ ++ siglongjmp( signal_handler::jump_buffer(), sig ); ++} ++ ++//____________________________________________________________________________// ++ ++static void execution_monitor_attaching_signal_handler( int sig ) ++{ ++ if( ignore_sigchild( sig ) ) ++ return; ++ ++ if( !debug::attach_debugger( false ) ) ++ execution_monitor_jumping_signal_handler( sig ); ++ ++ // debugger attached; it will handle the signal ++ BOOST_TEST_SYS_ASSERT( ::signal( sig, SIG_DFL ) != SIG_ERR ); ++} ++#endif ++ ++//____________________________________________________________________________// ++ + } + + } // namespace detail --- boost1.41-1.41.0.orig/debian/patches/endian.patch +++ boost1.41-1.41.0/debian/patches/endian.patch @@ -0,0 +1,14 @@ +2008-10-27: It seems that __GLIBC__ is no longer defined. +Assume all Debian systems have . + +--- boost-1.34.1.orig/boost/detail/endian.hpp ++++ boost-1.34.1/boost/detail/endian.hpp +@@ -30,7 +30,7 @@ + // GNU libc offers the helpful header which defines + // __BYTE_ORDER + +-#if defined (__GLIBC__) ++#if 1 + # include + # if (__BYTE_ORDER == __LITTLE_ENDIAN) + # define BOOST_LITTLE_ENDIAN --- boost1.41-1.41.0.orig/debian/patches/math_tools_config.patch +++ boost1.41-1.41.0/debian/patches/math_tools_config.patch @@ -0,0 +1,12 @@ +Reported upstream as https://svn.boost.org/trac/boost/ticket/2526 + +--- boost1.37-1.37.0.orig/boost/math/tools/config.hpp ++++ boost1.37-1.37.0/boost/math/tools/config.hpp +@@ -24,6 +24,7 @@ + #include + + #if defined(__CYGWIN__) || defined(__FreeBSD__) || defined(__NetBSD__) \ ++ || defined(__arm__) || defined(__armel__) || defined(__hppa__) || defined(__mips__) || defined(__mipsel__) \ + || defined(__hppa) || defined(__NO_LONG_DOUBLE_MATH) + # define BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS + #endif --- boost1.41-1.41.0.orig/debian/patches/date_time_date_formatting_hpp.patch +++ boost1.41-1.41.0/debian/patches/date_time_date_formatting_hpp.patch @@ -0,0 +1,19 @@ +# Fix for http://bugs.debian.org/cgi-bin/bugreport.cgi?archive=yes&bug=473177 +# Upstream http://svn.boost.org/trac/boost/ticket/1726 + +--- trunk.orig/boost/date_time/date_formatting.hpp ++++ trunk/boost/date_time/date_formatting.hpp +@@ -79,7 +79,13 @@ + { + typedef typename ymd_type::month_type month_type; + std::basic_ostringstream ss; ++ ++ // Temporarily switch to classic locale to prevent possible formatting ++ // of year with comma or other character (for example 2,008). ++ ss.imbue(std::locale::classic()); + ss << ymd.year; ++ ss.imbue(std::locale::locale()); ++ + if (format_type::has_date_sep_chars()) { + ss << format_type::month_sep_char(); + } --- boost1.41-1.41.0.orig/debian/patches/hurd-ellint_rd.patch +++ boost1.41-1.41.0/debian/patches/hurd-ellint_rd.patch @@ -0,0 +1,32 @@ +Description: Avoid build problem on hurd + Hurd's bits/errno.h defines constant ED, so rename + a local variable to avoid the clash. +Author: Pino Toscano +Bug: 552383 +Forwarded: not yet + + +--- boost1.40-1.40.0.orig/boost/math/special_functions/ellint_rd.hpp ++++ boost1.40-1.40.0/boost/math/special_functions/ellint_rd.hpp +@@ -29,7 +29,7 @@ + T ellint_rd_imp(T x, T y, T z, const Policy& pol) + { + T value, u, lambda, sigma, factor, tolerance; +- T X, Y, Z, EA, EB, EC, ED, EE, S1, S2; ++ T X, Y, Z, EA, EB, EC, ED_, EE, S1, S2; + unsigned long k; + + BOOST_MATH_STD_USING +@@ -93,9 +93,9 @@ + EA = X * Y; + EB = Z * Z; + EC = EA - EB; +- ED = EA - 6 * EB; +- EE = ED + EC + EC; +- S1 = ED * (ED * T(9) / 88 - Z * EE * T(9) / 52 - T(3) / 14); ++ ED_ = EA - 6 * EB; ++ EE = ED_ + EC + EC; ++ S1 = ED_ * (ED_ * T(9) / 88 - Z * EE * T(9) / 52 - T(3) / 14); + S2 = Z * (EE / 6 + Z * (-EC * T(9) / 22 + Z * EA * T(3) / 26)); + value = 3 * sigma + factor * (1 + S1 + S2) / (u * sqrt(u)); + --- boost1.41-1.41.0.orig/debian/patches/add-disable-long-double.patch +++ boost1.41-1.41.0/debian/patches/add-disable-long-double.patch @@ -0,0 +1,64 @@ +Add option --disable-long-double to Boost build procedure. +Specifying this option essentially allows us to ignore +a build failure. + +c.f. http://lists.boost.org/boost-build/2008/11/20683.php + +Reported upstream as https://svn.boost.org/trac/boost/ticket/2597 + + +--- boost1.36-1.36.0.orig/libs/math/build/Jamfile.v2 ++++ boost1.36-1.36.0/libs/math/build/Jamfile.v2 +@@ -51,7 +51,15 @@ + sph_neumann + ; + +-compile has_long_double_support.cpp ; ++if --disable-long-double in [ modules.peek : ARGV ] ++{ ++ build-long-double = false ; ++} ++else ++{ ++ build-long-double = true ; ++ compile has_long_double_support.cpp ; ++} + + lib boost_math_tr1 : ../src/tr1/$(TR1_SOURCES).cpp + : +@@ -63,11 +74,14 @@ + shared:BOOST_MATH_TR1_DYN_LINK=1 + ; + ++if $(build-long-double) = true ++{ + lib boost_math_tr1l : ../src/tr1/$(TR1_SOURCES)l.cpp + : + shared:BOOST_MATH_TR1_DYN_LINK=1 + has_long_double_support + ; ++} + + lib boost_math_c99 : ../src/tr1/$(C99_SOURCES).cpp + : +@@ -79,12 +94,19 @@ + shared:BOOST_MATH_TR1_DYN_LINK=1 + ; + ++if $(build-long-double) = true ++{ + lib boost_math_c99l : ../src/tr1/$(C99_SOURCES)l.cpp + : + shared:BOOST_MATH_TR1_DYN_LINK=1 + has_long_double_support + ; ++} + + +-boost-install boost_math_c99 boost_math_c99f boost_math_c99l boost_math_tr1 boost_math_tr1f boost_math_tr1l ; ++boost-install boost_math_c99 boost_math_c99f boost_math_tr1 boost_math_tr1f ; + ++if $(build-long-double) = true ++{ ++boost-install boost_math_c99l boost_math_tr1l ; ++} --- boost1.41-1.41.0.orig/debian/patches/mapped_file-header-guard.patch +++ boost1.41-1.41.0/debian/patches/mapped_file-header-guard.patch @@ -0,0 +1,18 @@ +--- boost1.41-1.41.0.orig/boost/iostreams/device/mapped_file.hpp ++++ boost1.41-1.41.0/boost/iostreams/device/mapped_file.hpp +@@ -4,6 +4,9 @@ + // Distributed under the Boost Software License, Version 1.0. (See accompanying + // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) + ++#ifndef BOOST_IOSTREAMS_MAPPED_FILE_HPP_INCLUDED ++#define BOOST_IOSTREAMS_MAPPED_FILE_HPP_INCLUDED ++ + #if defined(_MSC_VER) && (_MSC_VER >= 1020) + # pragma once + #endif +@@ -591,3 +594,5 @@ + } } // End namespaces iostreams, boost. + + #include // pops abi_suffix.hpp pragmas ++ ++#endif // #ifndef BOOST_IOSTREAMS_MAPPED_FILE_HPP_INCLUDED --- boost1.41-1.41.0.orig/debian/patches/series +++ boost1.41-1.41.0/debian/patches/series @@ -0,0 +1,13 @@ +boost-test-invalid-read.patch +mips-asm.patch +boost-python-examples.patch +endian.patch +kfreebsd-jam.patch +python2.5-elementtree.patch +date_time_date_formatting_hpp.patch +jam-wall-clean.patch +sh4.patch +boost-build-pythonid.patch +hurd-ellint_rd.patch +hurd-execution_monitor.patch +mapped_file-header-guard.patch --- boost1.41-1.41.0.orig/debian/patches/kfreebsd-jam.patch +++ boost1.41-1.41.0/debian/patches/kfreebsd-jam.patch @@ -0,0 +1,15 @@ +Reported upstream as https://svn.boost.org/trac/boost/ticket/2596 + +--- boost1.38-1.38.0.orig/tools/jam/src/jam.h ++++ boost1.38-1.38.0/tools/jam/src/jam.h +@@ -419,6 +419,10 @@ + #include + #endif + ++#ifdef __GLIBC__ ++# include ++#endif ++ + #if !defined( OS_BSDI ) && \ + !defined( OS_FREEBSD ) && \ + !defined( OS_DRAGONFLYBSD ) && \ --- boost1.41-1.41.0.orig/debian/patches/boost-build-pythonid.patch +++ boost1.41-1.41.0/debian/patches/boost-build-pythonid.patch @@ -0,0 +1,100 @@ +Patch from Gaudenz Steinlin +Debian bug: #552014 +Reported upstream: https://svn.boost.org/trac/boost/ticket/3544 + +Add --xpythonid parameter to the build system to only add an identification +to Python libraries. The existing --buildid parameter adds an id to all +libraries and leads to uneccessary duplication of libraries if only the +Python version for the build is different. + +--- boost_1_41_0.orig/Jamroot ++++ boost_1_41_0/Jamroot +@@ -342,6 +342,12 @@ + constant BUILD_ID : [ regex.replace $(build-id) "[*\\/:.\"\' ]" "_" ] ; + } + ++# Python build id (only for Python libraries) ++local python-id = [ MATCH "^--xpythonid=(.*)" : [ modules.peek : ARGV ] ] ; ++if $(python-id) ++{ ++ constant PYTHON_ID : [ regex.replace $(python-id) "[*\\/:.\"\']" "_" ] ; ++} + + # This rule is called by Boost.Build to determine the name of target. We use it + # to encode the build variant, compiler name and boost version in the target +--- boost_1_41_0.orig/libs/python/build/Jamfile.v2 ++++ boost_1_41_0/libs/python/build/Jamfile.v2 +@@ -3,6 +3,7 @@ + # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + + import os ; ++import indirect ; + import modules ; + import feature ; + +@@ -41,8 +42,27 @@ + + project boost/python + : source-location ../src ++ : requirements ++ -@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).tag ++ @$(__name__).tag + ; + ++rule tag ( name : type ? : property-set ) ++{ ++ local result = $(name) ; ++ if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB ++ { ++ if $(name) = boost_python && $(PYTHON_ID) ++ { ++ result = $(result)-$(PYTHON_ID) ; ++ } ++ } ++ ++ # forward to the boost tagging rule ++ return [ indirect.call $(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).tag ++ $(result) : $(type) : $(property-set) ] ; ++} ++ + rule cond ( test ? : yes * : no * ) { if $(test) { return $(yes) ; } else { return $(no) ; } } + rule unless ( test ? : yes * : no * ) { if ! $(test) { return $(yes) ; } else { return $(no) ; } } + +--- boost_1_41_0.orig/libs/mpi/build/Jamfile.v2 ++++ boost_1_41_0/libs/mpi/build/Jamfile.v2 +@@ -9,6 +9,7 @@ + # Andrew Lumsdaine + + import mpi ; ++import indirect ; + import python ; + + libraries = ; +@@ -18,8 +19,27 @@ + + project boost/mpi + : source-location ../src ++ : requirements ++ -@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).tag ++ @$(__name__).tag + ; + ++rule tag ( name : type ? : property-set ) ++{ ++ local result = $(name) ; ++ if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB ++ { ++ if $(name) = boost_mpi_python && $(PYTHON_ID) ++ { ++ result = $(result)-$(PYTHON_ID) ; ++ } ++ } ++ ++ # forward to the boost tagging rule ++ return [ indirect.call $(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).tag ++ $(result) : $(type) : $(property-set) ] ; ++} ++ + lib boost_mpi + : + broadcast.cpp --- boost1.41-1.41.0.orig/debian/Notes +++ boost1.41-1.41.0/debian/Notes @@ -0,0 +1,64 @@ + Thread Support + -------------- + +All debian libraries are supposed to be built with _REENTRANT defined +(policy 10.2). We thus use "_REENTRANT" on the bjam command +line in debian/rules. + + + Documentation + ------------- + +Generate the list of documentation files using wget going through +localhost to get the source tree + + path=boost_1_37_0 + cd ~/public_html + ... unpack boost + cd /tmp + wget -r --no-parent --domains=localhost \ + http://localhost/~steve/$path/index.html + cd localhost/.... + rm -rf boost + for f in `find * -type f`; do \ + test -f ~/public_html/$path/$f && echo $f; + done > df1 + find * -name '*.htm' -or -name '*.html' > df2 + cat df1 df2 | sort | uniq > documentation-files + +* need to symlink .../HTML/boost to /usr/include/boost; when put + the symlink into the deb, it got converted to a directory during + installation; use dh_link to do it + +* use -Nlibboost-doc with dh_compress to inhibit compressing files in the HTML + tree + + + Examples + -------- + +List of example directories obtained using + + find * -name 'example*' -type d > debian/example-files + + + Interdependencies + ----------------- + +Check using check-interdep.sh +** must do this after installing the -dev packages ** + +For 1.38 + +date_time depends on serialization +filesystem depends on system +graph depends on serialization, test +iostreams depends on regex +math depends on test +mpi depends on graph, python, serialization +regex depends on thread +thread depends on date_time +wave depends on filesystem, serialization + +Also, bug report #480948 indicates that multi_index, from libboost-dev +itself depends on serialization. --- boost1.41-1.41.0.orig/debian/documentation-files +++ boost1.41-1.41.0/debian/documentation-files @@ -0,0 +1,8537 @@ +boost.css +boost.png +doc/html/accumulators/acknowledgements.html +doc/html/accumulators.html +doc/html/accumulators/reference.html +doc/html/accumulators/user_s_guide.html +doc/html/any.html +doc/html/any/reference.html +doc/html/any/s02.html +doc/html/any/s04.html +doc/html/array/ack.html +doc/html/array.html +doc/html/array/more/info.html +doc/html/array/rationale.html +doc/html/array/reference.html +doc/html/Assignable.html +doc/html/bbv2/extender.html +doc/html/bbv2/faq.html +doc/html/bbv2.html +doc/html/bbv2/installation.html +doc/html/bbv2/overview.html +doc/html/bbv2/reference.html +doc/html/bbv2/tasks.html +doc/html/bbv2/tutorial.html +doc/html/bbv2/vs_v1.html +doc/html/BidirectionalIterator.html +doc/html/boost/accumulators/absolute.html +doc/html/boost/accumulators/accumulator_base.html +doc/html/boost/accumulators/accumulator_concept.html +doc/html/boost/accumulators/accumulator.html +doc/html/boost/accumulators/accumulator_set.html +doc/html/boost/accumulators/as_feature.html +doc/html/boost/accumulators/as_feature_tag_droppabl_id547001.html +doc/html/boost/accumulators/as_feature_tag_error_of_id548838.html +doc/html/boost/accumulators/as_feature_tag_extended_id549397.html +doc/html/boost/accumulators/as_feature_tag_extended_id549413.html +doc/html/boost/accumulators/as_feature_tag_mean_imm_id550250.html +doc/html/boost/accumulators/as_feature_tag_mean_laz_id550234.html +doc/html/boost/accumulators/as_feature_tag_mean_of__id550266.html +doc/html/boost/accumulators/as_feature_tag_mean_of__id550282.html +doc/html/boost/accumulators/as_feature_tag_mean_of__id550298.html +doc/html/boost/accumulators/as_feature_tag_mean_of__id550328.html +doc/html/boost/accumulators/as_feature_tag_median_w_id550844.html +doc/html/boost/accumulators/as_feature_tag_median_w_id550860.html +doc/html/boost/accumulators/as_feature_tag_median_w_id550876.html +doc/html/boost/accumulators/as_feature_tag_peaks_ov_id552267.html +doc/html/boost/accumulators/as_feature_tag_peaks_ov_id552290.html +doc/html/boost/accumulators/as_feature_tag_pot_quan_id553422.html +doc/html/boost/accumulators/as_feature_tag_pot_quan_id553445.html +doc/html/boost/accumulators/as_feature_tag_pot_tail_id553878.html +doc/html/boost/accumulators/as_feature_tag_pot_tail_id553901.html +doc/html/boost/accumulators/as_feature_tag_tail_var_id557011.html +doc/html/boost/accumulators/as_feature_tag_tail_var_id557048.html +doc/html/boost/accumulators/as_feature_tag_variance_id557770.html +doc/html/boost/accumulators/as_feature_tag_variance_id557787.html +doc/html/boost/accumulators/as_feature_tag_weighted_id549430.html +doc/html/boost/accumulators/as_feature_tag_weighted_id549447.html +doc/html/boost/accumulators/as_feature_tag_weighted_id553468.html +doc/html/boost/accumulators/as_feature_tag_weighted_id553490.html +doc/html/boost/accumulators/as_feature_tag_weighted_id553924.html +doc/html/boost/accumulators/as_feature_tag_weighted_id553946.html +doc/html/boost/accumulators/as_feature_tag_weighted_id559857.html +doc/html/boost/accumulators/as_feature_tag_weighted_id559873.html +doc/html/boost/accumulators/as_feature_tag_weighted_id559890.html +doc/html/boost/accumulators/as_feature_tag_weighted_id559920.html +doc/html/boost/accumulators/as_feature_tag_weighted_id560186.html +doc/html/boost/accumulators/as_feature_tag_weighted_id560203.html +doc/html/boost/accumulators/as_feature_tag_weighted_id560220.html +doc/html/boost/accumulators/as_feature_tag_weighted_id561373.html +doc/html/boost/accumulators/as_feature_tag_weighted_id561396.html +doc/html/boost/accumulators/as_feature_tag_weighted_id562825.html +doc/html/boost/accumulators/as_feature_tag_weighted_id562862.html +doc/html/boost/accumulators/as_feature_tag_weighted_id563397.html +doc/html/boost/accumulators/as_feature_tag_weighted_id563413.html +doc/html/boost/accumulators/as_weighted_feature.html +doc/html/boost/accumulators/as_weighted_feature_tag_id547030.html +doc/html/boost/accumulators/as_weighted_feature_tag_id548155.html +doc/html/boost/accumulators/as_weighted_feature_tag_id548636.html +doc/html/boost/accumulators/as_weighted_feature_tag_id548867.html +doc/html/boost/accumulators/as_weighted_feature_tag_id549030.html +doc/html/boost/accumulators/as_weighted_feature_tag_id549494.html +doc/html/boost/accumulators/as_weighted_feature_tag_id549526.html +doc/html/boost/accumulators/as_weighted_feature_tag_id549865.html +doc/html/boost/accumulators/as_weighted_feature_tag_id550414.html +doc/html/boost/accumulators/as_weighted_feature_tag_id550445.html +doc/html/boost/accumulators/as_weighted_feature_tag_id550476.html +doc/html/boost/accumulators/as_weighted_feature_tag_id550533.html +doc/html/boost/accumulators/as_weighted_feature_tag_id550923.html +doc/html/boost/accumulators/as_weighted_feature_tag_id550954.html +doc/html/boost/accumulators/as_weighted_feature_tag_id550985.html +doc/html/boost/accumulators/as_weighted_feature_tag_id551550.html +doc/html/boost/accumulators/as_weighted_feature_tag_id551734.html +doc/html/boost/accumulators/as_weighted_feature_tag_id551963.html +doc/html/boost/accumulators/as_weighted_feature_tag_id552352.html +doc/html/boost/accumulators/as_weighted_feature_tag_id552395.html +doc/html/boost/accumulators/as_weighted_feature_tag_id553552.html +doc/html/boost/accumulators/as_weighted_feature_tag_id553594.html +doc/html/boost/accumulators/as_weighted_feature_tag_id554008.html +doc/html/boost/accumulators/as_weighted_feature_tag_id554050.html +doc/html/boost/accumulators/as_weighted_feature_tag_id554916.html +doc/html/boost/accumulators/as_weighted_feature_tag_id555215.html +doc/html/boost/accumulators/as_weighted_feature_tag_id555813.html +doc/html/boost/accumulators/as_weighted_feature_tag_id556420.html +doc/html/boost/accumulators/as_weighted_feature_tag_id557153.html +doc/html/boost/accumulators/as_weighted_feature_tag_id557225.html +doc/html/boost/accumulators/as_weighted_feature_tag_id557817.html +doc/html/boost/accumulators/as_weighted_feature_tag_id557848.html +doc/html/boost/accumulators/covariate1.html +doc/html/boost/accumulators/covariate2.html +doc/html/BOOST_ACCUMULATORS_DEFINE_EXTRACTOR.html +doc/html/boost/accumulators/depends_on.html +doc/html/boost/accumulators/dont_care.html +doc/html/boost/accumulators/droppable_accumulator_base.html +doc/html/boost/accumulators/droppable_accumulator.html +doc/html/boost/accumulators/extract/coherent_tail_mean.html +doc/html/boost/accumulators/extract/count.html +doc/html/boost/accumulators/extract/covariance.html +doc/html/boost/accumulators/extract/density.html +doc/html/boost/accumulators/extract/extended_p_square.html +doc/html/boost/accumulators/extract/extended_p_square_quant_id549574.html +doc/html/boost/accumulators/extract/extended_p_square_quantile.html +doc/html/boost/accumulators/extract/kurtosis.html +doc/html/boost/accumulators/extract/lazy_variance.html +doc/html/boost/accumulators/extract/lazy_weighted_variance.html +doc/html/boost/accumulators/extract/max.html +doc/html/boost/accumulators/extract/mean.html +doc/html/boost/accumulators/extract/mean_of_weights.html +doc/html/boost/accumulators/extract/median.html +doc/html/boost/accumulators/extract/min.html +doc/html/boost/accumulators/extract/non_coherent_tail_mean.html +doc/html/boost/accumulators/extract/non_coherent_weighted_t_id562132.html +doc/html/boost/accumulators/extractor.html +doc/html/boost/accumulators/extract/peaks_over_threshold.html +doc/html/boost/accumulators/extract/p_square_cumulative_dis_id551770.html +doc/html/boost/accumulators/extract/p_square_quantile_for_m_id552010.html +doc/html/boost/accumulators/extract/p_square_quantile.html +doc/html/boost/accumulators/extract/quantile.html +doc/html/boost/accumulators/extract/relative_tail_variate_m_id557312.html +doc/html/boost/accumulators/extract/relative_weighted_tail__id562915.html +doc/html/boost/accumulators/extract/rolling_count.html +doc/html/boost/accumulators/extract/rolling_mean.html +doc/html/boost/accumulators/extract/rolling_sum.html +doc/html/boost/accumulators/extract/rolling_window.html +doc/html/boost/accumulators/extract/rolling_window_plus1.html +doc/html/boost/accumulators/extract/skewness.html +doc/html/boost/accumulators/extract/sum.html +doc/html/boost/accumulators/extract/sum_of_variates.html +doc/html/boost/accumulators/extract/sum_of_weights.html +doc/html/boost/accumulators/extract/tail.html +doc/html/boost/accumulators/extract/tail_mean.html +doc/html/boost/accumulators/extract/tail_quantile.html +doc/html/boost/accumulators/extract/tail_variate.html +doc/html/boost/accumulators/extract/tail_variate_means.html +doc/html/boost/accumulators/extract/tail_weights.html +doc/html/boost/accumulators/extract/variance.html +doc/html/boost/accumulators/extract/weighted_covariance.html +doc/html/boost/accumulators/extract/weighted_density.html +doc/html/boost/accumulators/extract/weighted_extended_p_square.html +doc/html/boost/accumulators/extract/weighted_extended_p_squ_id549587.html +doc/html/boost/accumulators/extract/weighted_extended_p_squ_id549600.html +doc/html/boost/accumulators/extract/weighted_kurtosis.html +doc/html/boost/accumulators/extract/weighted_mean.html +doc/html/boost/accumulators/extract/weighted_median.html +doc/html/boost/accumulators/extract/weighted_peaks_over_thr_id561422.html +doc/html/boost/accumulators/extract/weighted_p_square_cumul_id560800.html +doc/html/boost/accumulators/extract/weighted_p_square_quant_id561036.html +doc/html/boost/accumulators/extract/weighted_p_square_quantile.html +doc/html/boost/accumulators/extract/weighted_skewness.html +doc/html/boost/accumulators/extract/weighted_sum.html +doc/html/boost/accumulators/extract/weighted_sum_of_variates.html +doc/html/boost/accumulators/extract/weighted_tail_quantile.html +doc/html/boost/accumulators/extract/weighted_tail_variate_m_id562903.html +doc/html/boost/accumulators/extract/weighted_variance.html +doc/html/boost/accumulators/extract/with_density_median.html +doc/html/boost/accumulators/extract/with_p_square_cumulativ_id551046.html +doc/html/boost/accumulators/feature_of.html +doc/html/boost/accumulators/feature_of_tag_absolute_id557086.html +doc/html/boost/accumulators/feature_of_tag_absolute_id557190.html +doc/html/boost/accumulators/feature_of_tag_coherent_id555774.html +doc/html/boost/accumulators/feature_of_tag_covarian_id548129.html +doc/html/boost/accumulators/feature_of_tag_droppabl_id547060.html +doc/html/boost/accumulators/feature_of_tag_extended_id549465.html +doc/html/boost/accumulators/feature_of_tag_extended_id549479.html +doc/html/boost/accumulators/feature_of_tag_external_id547203.html +doc/html/boost/accumulators/feature_of_tag_immediat_id550358.html +doc/html/boost/accumulators/feature_of_tag_immediat_id550373.html +doc/html/boost/accumulators/feature_of_tag_immediat_id550387.html +doc/html/boost/accumulators/feature_of_tag_immediat_id550461.html +doc/html/boost/accumulators/feature_of_tag_immediat_id550563.html +doc/html/boost/accumulators/feature_of_tag_lazy_var_id557803.html +doc/html/boost/accumulators/feature_of_tag_lazy_wei_id557865.html +doc/html/boost/accumulators/feature_of_tag_non_cohe_id555794.html +doc/html/boost/accumulators/feature_of_tag_non_cohe_id555836.html +doc/html/boost/accumulators/feature_of_tag_peaks_ov_id552313.html +doc/html/boost/accumulators/feature_of_tag_peaks_ov_id552332.html +doc/html/boost/accumulators/feature_of_tag_pot_quan_id553513.html +doc/html/boost/accumulators/feature_of_tag_pot_quan_id553533.html +doc/html/boost/accumulators/feature_of_tag_pot_tail_id553969.html +doc/html/boost/accumulators/feature_of_tag_pot_tail_id553989.html +doc/html/boost/accumulators/feature_of_tag_referenc_id547320.html +doc/html/boost/accumulators/feature_of_tag_relative_id557119.html +doc/html/boost/accumulators/feature_of_tag_relative_id557262.html +doc/html/boost/accumulators/feature_of_tag_sum_of_v_id555245.html +doc/html/boost/accumulators/feature_of_tag_tail_Lef_id555478.html +doc/html/boost/accumulators/feature_of_tag_tail_qua_id556401.html +doc/html/boost/accumulators/feature_of_tag_tail_var_id556743.html +doc/html/boost/accumulators/feature_of_tag_tail_wei_id556776.html +doc/html/boost/accumulators/feature_of_tag_value_Va_id547453.html +doc/html/boost/accumulators/feature_of_tag_weighted_id548185.html +doc/html/boost/accumulators/feature_of_tag_weighted_id548653.html +doc/html/boost/accumulators/feature_of_tag_weighted_id549046.html +doc/html/boost/accumulators/feature_of_tag_weighted_id549511.html +doc/html/boost/accumulators/feature_of_tag_weighted_id549544.html +doc/html/boost/accumulators/feature_of_tag_weighted_id549881.html +doc/html/boost/accumulators/feature_of_tag_weighted_id550430.html +doc/html/boost/accumulators/feature_of_tag_weighted_id550506.html +doc/html/boost/accumulators/feature_of_tag_weighted_id550939.html +doc/html/boost/accumulators/feature_of_tag_weighted_id551575.html +doc/html/boost/accumulators/feature_of_tag_weighted_id551751.html +doc/html/boost/accumulators/feature_of_tag_weighted_id551980.html +doc/html/boost/accumulators/feature_of_tag_weighted_id552375.html +doc/html/boost/accumulators/feature_of_tag_weighted_id552418.html +doc/html/boost/accumulators/feature_of_tag_weighted_id553574.html +doc/html/boost/accumulators/feature_of_tag_weighted_id553617.html +doc/html/boost/accumulators/feature_of_tag_weighted_id554030.html +doc/html/boost/accumulators/feature_of_tag_weighted_id554073.html +doc/html/boost/accumulators/feature_of_tag_weighted_id554932.html +doc/html/boost/accumulators/feature_of_tag_weighted_id555231.html +doc/html/boost/accumulators/feature_of_tag_weighted_id556443.html +doc/html/boost/accumulators/feature_of_tag_weighted_id557834.html +doc/html/boost/accumulators/feature_of_tag_weighted_id561938.html +doc/html/boost/accumulators/feature_of_tag_with_den_id550894.html +doc/html/boost/accumulators/feature_of_tag_with_den_id550970.html +doc/html/boost/accumulators/feature_of_tag_with_p_s_id550908.html +doc/html/boost/accumulators/feature_of_tag_with_p_s_id551003.html +doc/html/boost/accumulators/features.html +doc/html/boost/accumulators/for_median.html +doc/html/BOOST_ACCUMULATORS_IGNORE_GLOBAL.html +doc/html/boost/accumulators/immediate.html +doc/html/boost/accumulators/impl/coherent_tail_mean_impl.html +doc/html/boost/accumulators/impl/count_impl.html +doc/html/boost/accumulators/impl/covariance_impl.html +doc/html/boost/accumulators/impl/density_impl.html +doc/html/boost/accumulators/impl/error_of_mean_impl.html +doc/html/boost/accumulators/impl/extended_p_square_impl.html +doc/html/boost/accumulators/impl/extended_p_square_quant_id549616.html +doc/html/boost/accumulators/impl/immediate_mean_impl.html +doc/html/boost/accumulators/impl/immediate_weighted_mean_id560031.html +doc/html/boost/accumulators/impl/kurtosis_impl.html +doc/html/boost/accumulators/impl/lazy_variance_impl.html +doc/html/boost/accumulators/impl/lazy_weighted_variance__id563461.html +doc/html/boost/accumulators/impl/max_impl.html +doc/html/boost/accumulators/impl/mean_impl.html +doc/html/boost/accumulators/impl/median_impl.html +doc/html/boost/accumulators/impl/min_impl.html +doc/html/boost/accumulators/impl/moment_impl.html +doc/html/boost/accumulators/impl/non_coherent_tail_mean__id556057.html +doc/html/boost/accumulators/impl/non_coherent_weighted_t_id562147.html +doc/html/boost/accumulators/impl/peaks_over_threshold_impl.html +doc/html/boost/accumulators/impl/peaks_over_threshold_pr_id553271.html +doc/html/boost/accumulators/impl/pot_quantile_impl.html +doc/html/boost/accumulators/impl/pot_tail_mean_impl.html +doc/html/boost/accumulators/impl/p_square_cumulative_dis_id551786.html +doc/html/boost/accumulators/impl/p_square_quantile_impl.html +doc/html/boost/accumulators/impl/reference_accumulator_impl.html +doc/html/boost/accumulators/impl/rolling_count_impl.html +doc/html/boost/accumulators/impl/rolling_mean_impl.html +doc/html/boost/accumulators/impl/rolling_sum_impl.html +doc/html/boost/accumulators/impl/rolling_window_impl.html +doc/html/boost/accumulators/impl/rolling_window_plus1_impl.html +doc/html/boost/accumulators/impl/skewness_impl.html +doc/html/boost/accumulators/impl/sum_impl.html +doc/html/boost/accumulators/impl/tail_impl.html +doc/html/boost/accumulators/impl/tail_quantile_impl.html +doc/html/boost/accumulators/impl/tail_variate_impl.html +doc/html/boost/accumulators/impl/tail_variate_means_impl.html +doc/html/boost/accumulators/impl/value_accumulator_impl.html +doc/html/boost/accumulators/impl/variance_impl.html +doc/html/boost/accumulators/impl/weighted_covariance_impl.html +doc/html/boost/accumulators/impl/weighted_density_impl.html +doc/html/boost/accumulators/impl/weighted_extended_p_squ_id559246.html +doc/html/boost/accumulators/impl/weighted_kurtosis_impl.html +doc/html/boost/accumulators/impl/weighted_mean_impl.html +doc/html/boost/accumulators/impl/weighted_median_impl.html +doc/html/boost/accumulators/impl/weighted_moment_impl.html +doc/html/boost/accumulators/impl/weighted_peaks_over_thr_id561438.html +doc/html/boost/accumulators/impl/weighted_peaks_over_thr_id561545.html +doc/html/boost/accumulators/impl/weighted_p_square_cumul_id560816.html +doc/html/boost/accumulators/impl/weighted_p_square_quant_id561052.html +doc/html/boost/accumulators/impl/weighted_skewness_impl.html +doc/html/boost/accumulators/impl/weighted_sum_impl.html +doc/html/boost/accumulators/impl/weighted_tail_quantile__id562522.html +doc/html/boost/accumulators/impl/weighted_tail_variate_m_id562931.html +doc/html/boost/accumulators/impl/weighted_variance_impl.html +doc/html/boost/accumulators/impl/with_density_median_impl.html +doc/html/boost/accumulators/impl/with_density_weighted_m_id560351.html +doc/html/boost/accumulators/impl/with_p_square_cumulativ_id551294.html +doc/html/boost/accumulators/impl/with_p_square_cumulativ_id560488.html +doc/html/boost/accumulators/lazy.html +doc/html/boost/accumulators/left.html +doc/html/boost/accumulators/linear.html +doc/html/BOOST_ACCUMULATORS_MAX_ARGS.html +doc/html/BOOST_ACCUMULATORS_MAX_FEATURES.html +doc/html/BOOST_ACCUMULATORS_PROTO_DISABLE_IF_IS_CONST.html +doc/html/boost/accumulators/quadratic.html +doc/html/boost/accumulators/regular.html +doc/html/boost/accumulators/relative.html +doc/html/boost/accumulators/right.html +doc/html/boost/accumulators/sample.html +doc/html/boost/accumulators/stats.html +doc/html/boost/accumulators/tag/absolute_tail_variate_m_id557655.html +doc/html/boost/accumulators/tag/absolute_weighted_tail__id563281.html +doc/html/boost/accumulators/tag/abstract_absolute_tail__id557732.html +doc/html/boost/accumulators/tag/abstract_covariance.html +doc/html/boost/accumulators/tag/abstract_non_coherent_t_id556382.html +doc/html/boost/accumulators/tag/abstract_peaks_over_thr_id553404.html +doc/html/boost/accumulators/tag/abstract_relative_tail__id557741.html +doc/html/boost/accumulators/tag/abstract_sum_of_variates.html +doc/html/boost/accumulators/tag/abstract_tail.html +doc/html/boost/accumulators/tag/abstract_tail_variate.html +doc/html/boost/accumulators/tag/abstract_tail_weights.html +doc/html/boost/accumulators/tag/abstract_weighted_sum_o_id562109.html +doc/html/boost/accumulators/tag/accumulator.html +doc/html/boost/accumulators/tag/as_droppable_droppable__id547101.html +doc/html/boost/accumulators/tag/as_droppable.html +doc/html/boost/accumulators/tag/coherent_tail_mean.html +doc/html/boost/accumulators/tag/count.html +doc/html/boost/accumulators/tag/covariance.html +doc/html/boost/accumulators/tag/covariate1.html +doc/html/boost/accumulators/tag/covariate2.html +doc/html/boost/accumulators/tag/density.html +doc/html/boost/accumulators/tag/droppable.html +doc/html/boost/accumulators/tag/error_of.html +doc/html/boost/accumulators/tag/error_of_immediate_mean_id549005.html +doc/html/boost/accumulators/tag/error_of_mean_id548990.html +doc/html/boost/accumulators/tag/extended_p_square.html +doc/html/boost/accumulators/tag/extended_p_square_quant_id549778.html +doc/html/boost/accumulators/tag/extended_p_square_quantile.html +doc/html/boost/accumulators/tag/external_Feature__Tag___id547274.html +doc/html/boost/accumulators/tag/external.html +doc/html/boost/accumulators/tag/immediate_mean.html +doc/html/boost/accumulators/tag/immediate_mean_of_variates.html +doc/html/boost/accumulators/tag/immediate_mean_of_weights.html +doc/html/boost/accumulators/tag/immediate_weighted_mean.html +doc/html/boost/accumulators/tag/immediate_weighted_mean_id560156.html +doc/html/boost/accumulators/tag/kurtosis.html +doc/html/boost/accumulators/tag/lazy_variance.html +doc/html/boost/accumulators/tag/lazy_weighted_variance.html +doc/html/boost/accumulators/tag/max.html +doc/html/boost/accumulators/tag/mean.html +doc/html/boost/accumulators/tag/mean_of_variates.html +doc/html/boost/accumulators/tag/mean_of_weights.html +doc/html/boost/accumulators/tag/median.html +doc/html/boost/accumulators/tag/min.html +doc/html/boost/accumulators/tag/moment.html +doc/html/boost/accumulators/tag/non_coherent_tail_mean.html +doc/html/boost/accumulators/tag/non_coherent_weighted_t_id562468.html +doc/html/boost/accumulators/tag/peaks_over_threshold.html +doc/html/boost/accumulators/tag/peaks_over_threshold_prob.html +doc/html/boost/accumulators/tag/pot_quantile.html +doc/html/boost/accumulators/tag/pot_quantile_prob.html +doc/html/boost/accumulators/tag/pot_tail_mean.html +doc/html/boost/accumulators/tag/pot_tail_mean_prob.html +doc/html/boost/accumulators/tag/p_square_cumulative_dis_id551944.html +doc/html/boost/accumulators/tag/p_square_quantile_for_m_id552248.html +doc/html/boost/accumulators/tag/p_square_quantile.html +doc/html/boost/accumulators/tag/quantile.html +doc/html/boost/accumulators/tag/reference.html +doc/html/boost/accumulators/tag/reference_tag.html +doc/html/boost/accumulators/tag/relative_tail_variate_m_id557694.html +doc/html/boost/accumulators/tag/relative_weighted_tail__id563321.html +doc/html/boost/accumulators/tag/rolling_count.html +doc/html/boost/accumulators/tag/rolling_mean.html +doc/html/boost/accumulators/tag/rolling_sum.html +doc/html/boost/accumulators/tag/rolling_window.html +doc/html/boost/accumulators/tag/rolling_window_plus1.html +doc/html/boost/accumulators/tag/sample.html +doc/html/boost/accumulators/tag/skewness.html +doc/html/boost/accumulators/tag/sum.html +doc/html/boost/accumulators/tag/sum_of_variates.html +doc/html/boost/accumulators/tag/sum_of_weights.html +doc/html/boost/accumulators/tag/tail.html +doc/html/boost/accumulators/tag/tail_mean.html +doc/html/boost/accumulators/tag/tail_quantile.html +doc/html/boost/accumulators/tag/tail_variate.html +doc/html/boost/accumulators/tag/tail_weights.html +doc/html/boost/accumulators/tag/value.html +doc/html/boost/accumulators/tag/value_tag.html +doc/html/boost/accumulators/tag/variance.html +doc/html/boost/accumulators/tag/weighted_covariance.html +doc/html/boost/accumulators/tag/weighted_density.html +doc/html/boost/accumulators/tag/weighted_extended_p_square.html +doc/html/boost/accumulators/tag/weighted_extended_p_squ_id549804.html +doc/html/boost/accumulators/tag/weighted_extended_p_squ_id549829.html +doc/html/boost/accumulators/tag/weighted_kurtosis.html +doc/html/boost/accumulators/tag/weighted_mean.html +doc/html/boost/accumulators/tag/weighted_mean_of_variates.html +doc/html/boost/accumulators/tag/weighted_median.html +doc/html/boost/accumulators/tag/weighted_moment.html +doc/html/boost/accumulators/tag/weighted_peaks_over_thr_id561648.html +doc/html/boost/accumulators/tag/weighted_peaks_over_thr_id561663.html +doc/html/boost/accumulators/tag/weighted_pot_quantile.html +doc/html/boost/accumulators/tag/weighted_pot_quantile_prob.html +doc/html/boost/accumulators/tag/weighted_pot_tail_mean.html +doc/html/boost/accumulators/tag/weighted_pot_tail_mean__id554310.html +doc/html/boost/accumulators/tag/weighted_p_square_cumul_id560991.html +doc/html/boost/accumulators/tag/weighted_p_square_quant_id561340.html +doc/html/boost/accumulators/tag/weighted_p_square_quantile.html +doc/html/boost/accumulators/tag/weighted_skewness.html +doc/html/boost/accumulators/tag/weighted_sum.html +doc/html/boost/accumulators/tag/weighted_sum_of_variates.html +doc/html/boost/accumulators/tag/weighted_tail_quantile.html +doc/html/boost/accumulators/tag/weighted_variance.html +doc/html/boost/accumulators/tag/weight.html +doc/html/boost/accumulators/tag/weights.html +doc/html/boost/accumulators/tag/with_density_median.html +doc/html/boost/accumulators/tag/with_density_weighted_m_id560622.html +doc/html/boost/accumulators/tag/with_p_square_cumulativ_id551424.html +doc/html/boost/accumulators/tag/with_p_square_cumulativ_id560631.html +doc/html/boost/accumulators/tail_cache_size_named_a_id555460.html +doc/html/boost/accumulators/tail_cache_size_named_a_id555469.html +doc/html/boost/accumulators/tail_cache_size_named_arg.html +doc/html/boost/accumulators/unweighted.html +doc/html/boost/accumulators/weighted.html +doc/html/boost/accumulators/weight.html +doc/html/boost/accumulators/weights.html +doc/html/boost/accumulators/with_cached_result.html +doc/html/boost/accumulators/with_density.html +doc/html/boost/accumulators/with_error.html +doc/html/boost/accumulators/with_p_square_cumulativ_id563933.html +doc/html/boost/accumulators/with_p_square_quantile.html +doc/html/boost/accumulators/with_threshold_probability.html +doc/html/boost/accumulators/with_threshold_value.html +doc/html/boost/algorithm/all.html +doc/html/boost/algorithm/const_formatter.html +doc/html/boost/algorithm/contains.html +doc/html/boost/algorithm/empty_formatter.html +doc/html/boost/algorithm/ends_with.html +doc/html/boost/algorithm/equals.html +doc/html/boost/algorithm/erase_all_copy.html +doc/html/boost/algorithm/erase_all.html +doc/html/boost/algorithm/erase_all_regex_copy.html +doc/html/boost/algorithm/erase_all_regex.html +doc/html/boost/algorithm/erase_first_copy.html +doc/html/boost/algorithm/erase_first.html +doc/html/boost/algorithm/erase_head_copy.html +doc/html/boost/algorithm/erase_head.html +doc/html/boost/algorithm/erase_last_copy.html +doc/html/boost/algorithm/erase_last.html +doc/html/boost/algorithm/erase_nth_copy.html +doc/html/boost/algorithm/erase_nth.html +doc/html/boost/algorithm/erase_range_copy.html +doc/html/boost/algorithm/erase_range.html +doc/html/boost/algorithm/erase_regex_copy.html +doc/html/boost/algorithm/erase_regex.html +doc/html/boost/algorithm/erase_tail_copy.html +doc/html/boost/algorithm/erase_tail.html +doc/html/boost/algorithm/find_all.html +doc/html/boost/algorithm/find_all_regex.html +doc/html/boost/algorithm/FinderConcept.html +doc/html/boost/algorithm/find_first.html +doc/html/boost/algorithm/find_format_all_copy.html +doc/html/boost/algorithm/find_format_all.html +doc/html/boost/algorithm/find_format_copy.html +doc/html/boost/algorithm/find_format.html +doc/html/boost/algorithm/find_head.html +doc/html/boost/algorithm/find.html +doc/html/boost/algorithm/find_iterator.html +doc/html/boost/algorithm/find_last.html +doc/html/boost/algorithm/find_nth.html +doc/html/boost/algorithm/find_regex.html +doc/html/boost/algorithm/find_tail.html +doc/html/boost/algorithm/find_token.html +doc/html/boost/algorithm/first_finder.html +doc/html/boost/algorithm/FormatterConcept.html +doc/html/boost/algorithm/has_const_time_erase.html +doc/html/boost/algorithm/has_const_time_insert.html +doc/html/boost/algorithm/has_native_replace.html +doc/html/boost/algorithm/has_stable_iterators.html +doc/html/boost/algorithm/head_finder.html +doc/html/boost/algorithm/icontains.html +doc/html/boost/algorithm/identity_formatter.html +doc/html/boost/algorithm/iends_with.html +doc/html/boost/algorithm/iequals.html +doc/html/boost/algorithm/ierase_all_copy.html +doc/html/boost/algorithm/ierase_all.html +doc/html/boost/algorithm/ierase_first_copy.html +doc/html/boost/algorithm/ierase_first.html +doc/html/boost/algorithm/ierase_last_copy.html +doc/html/boost/algorithm/ierase_last.html +doc/html/boost/algorithm/ierase_nth_copy.html +doc/html/boost/algorithm/ierase_nth.html +doc/html/boost/algorithm/ifind_all.html +doc/html/boost/algorithm/ifind_first.html +doc/html/boost/algorithm/ifind_last.html +doc/html/boost/algorithm/ifind_nth.html +doc/html/boost/algorithm/ilexicographical_compare.html +doc/html/boost/algorithm/ireplace_all_copy.html +doc/html/boost/algorithm/ireplace_all.html +doc/html/boost/algorithm/ireplace_first_copy.html +doc/html/boost/algorithm/ireplace_first.html +doc/html/boost/algorithm/ireplace_last_copy.html +doc/html/boost/algorithm/ireplace_last.html +doc/html/boost/algorithm/ireplace_nth_copy.html +doc/html/boost/algorithm/ireplace_nth.html +doc/html/boost/algorithm/is_alnum.html +doc/html/boost/algorithm/is_alpha.html +doc/html/boost/algorithm/is_any_of.html +doc/html/boost/algorithm/is_classified.html +doc/html/boost/algorithm/is_cntrl.html +doc/html/boost/algorithm/is_digit.html +doc/html/boost/algorithm/is_equal.html +doc/html/boost/algorithm/is_from_range.html +doc/html/boost/algorithm/is_graph.html +doc/html/boost/algorithm/is_iequal.html +doc/html/boost/algorithm/is_iless.html +doc/html/boost/algorithm/is_less.html +doc/html/boost/algorithm/is_lower.html +doc/html/boost/algorithm/is_not_greater.html +doc/html/boost/algorithm/is_not_igreater.html +doc/html/boost/algorithm/is_print.html +doc/html/boost/algorithm/is_punct.html +doc/html/boost/algorithm/is_space.html +doc/html/boost/algorithm/istarts_with.html +doc/html/boost/algorithm/is_upper.html +doc/html/boost/algorithm/is_xdigit.html +doc/html/boost/algorithm/iter_find.html +doc/html/boost/algorithm/iter_split.html +doc/html/boost/algorithm/join.html +doc/html/boost/algorithm/join_if_id630936.html +doc/html/boost/algorithm/join_if_id636729.html +doc/html/boost/algorithm/last_finder.html +doc/html/boost/algorithm/lexicographical_compare.html +doc/html/boost/algorithm/make_find_iterator.html +doc/html/boost/algorithm/make_split_iterator.html +doc/html/boost/algorithm/nth_finder.html +doc/html/boost/algorithm/operator___id1130372.html +doc/html/boost/algorithm/operator__id625424.html +doc/html/boost/algorithm/operator_id634121.html +doc/html/boost/algorithm/range_finder.html +doc/html/boost/algorithm/regex_finder.html +doc/html/boost/algorithm/regex_formatter.html +doc/html/boost/algorithm/replace_all_copy.html +doc/html/boost/algorithm/replace_all.html +doc/html/boost/algorithm/replace_all_regex_copy.html +doc/html/boost/algorithm/replace_all_regex.html +doc/html/boost/algorithm/replace_first_copy.html +doc/html/boost/algorithm/replace_first.html +doc/html/boost/algorithm/replace_head_copy.html +doc/html/boost/algorithm/replace_head.html +doc/html/boost/algorithm/replace_last_copy.html +doc/html/boost/algorithm/replace_last.html +doc/html/boost/algorithm/replace_nth_copy.html +doc/html/boost/algorithm/replace_nth.html +doc/html/boost/algorithm/replace_range_copy.html +doc/html/boost/algorithm/replace_range.html +doc/html/boost/algorithm/replace_regex_copy.html +doc/html/boost/algorithm/replace_regex.html +doc/html/boost/algorithm/replace_tail_copy.html +doc/html/boost/algorithm/replace_tail.html +doc/html/boost/algorithm/split_id1113872.html +doc/html/boost/algorithm/split_iterator.html +doc/html/boost/algorithm/split_regex.html +doc/html/boost/algorithm/starts_with.html +doc/html/boost/algorithm/tail_finder.html +doc/html/boost/algorithm/token_compress_mode_type.html +doc/html/boost/algorithm/token_finder.html +doc/html/boost/algorithm/to_lower_copy.html +doc/html/boost/algorithm/to_lower.html +doc/html/boost/algorithm/to_upper_copy.html +doc/html/boost/algorithm/to_upper.html +doc/html/boost/algorithm/trim_copy.html +doc/html/boost/algorithm/trim_copy_if.html +doc/html/boost/algorithm/trim.html +doc/html/boost/algorithm/trim_if.html +doc/html/boost/algorithm/trim_left_copy.html +doc/html/boost/algorithm/trim_left_copy_if.html +doc/html/boost/algorithm/trim_left.html +doc/html/boost/algorithm/trim_left_if.html +doc/html/boost/algorithm/trim_right_copy.html +doc/html/boost/algorithm/trim_right_copy_if.html +doc/html/boost/algorithm/trim_right.html +doc/html/boost/algorithm/trim_right_if.html +doc/html/boost/any_cast.html +doc/html/boost/any.html +doc/html/boost/apply_visitor_delayed_t.html +doc/html/boost/apply_visitor.html +doc/html/boost/array.html +doc/html/boost_asio/example/allocation/server.cpp +doc/html/boost_asio/example/buffers/reference_counted.cpp +doc/html/boost_asio/example/chat/chat_client.cpp +doc/html/boost_asio/example/chat/chat_message.hpp +doc/html/boost_asio/example/chat/chat_server.cpp +doc/html/boost_asio/example/chat/posix_chat_client.cpp +doc/html/boost_asio/example/echo/async_tcp_echo_server.cpp +doc/html/boost_asio/example/echo/async_udp_echo_server.cpp +doc/html/boost_asio/example/echo/blocking_tcp_echo_client.cpp +doc/html/boost_asio/example/echo/blocking_tcp_echo_server.cpp +doc/html/boost_asio/example/echo/blocking_udp_echo_client.cpp +doc/html/boost_asio/example/echo/blocking_udp_echo_server.cpp +doc/html/boost_asio/example/http/client/async_client.cpp +doc/html/boost_asio/example/http/client/sync_client.cpp +doc/html/boost_asio/example/http/server2/connection.cpp +doc/html/boost_asio/example/http/server2/connection.hpp +doc/html/boost_asio/example/http/server2/header.hpp +doc/html/boost_asio/example/http/server2/io_service_pool.cpp +doc/html/boost_asio/example/http/server2/io_service_pool.hpp +doc/html/boost_asio/example/http/server2/mime_types.cpp +doc/html/boost_asio/example/http/server2/mime_types.hpp +doc/html/boost_asio/example/http/server2/posix_main.cpp +doc/html/boost_asio/example/http/server2/reply.cpp +doc/html/boost_asio/example/http/server2/reply.hpp +doc/html/boost_asio/example/http/server2/request_handler.cpp +doc/html/boost_asio/example/http/server2/request_handler.hpp +doc/html/boost_asio/example/http/server2/request.hpp +doc/html/boost_asio/example/http/server2/request_parser.cpp +doc/html/boost_asio/example/http/server2/request_parser.hpp +doc/html/boost_asio/example/http/server2/server.cpp +doc/html/boost_asio/example/http/server2/server.hpp +doc/html/boost_asio/example/http/server2/win_main.cpp +doc/html/boost_asio/example/http/server3/connection.cpp +doc/html/boost_asio/example/http/server3/connection.hpp +doc/html/boost_asio/example/http/server3/header.hpp +doc/html/boost_asio/example/http/server3/mime_types.cpp +doc/html/boost_asio/example/http/server3/mime_types.hpp +doc/html/boost_asio/example/http/server3/posix_main.cpp +doc/html/boost_asio/example/http/server3/reply.cpp +doc/html/boost_asio/example/http/server3/reply.hpp +doc/html/boost_asio/example/http/server3/request_handler.cpp +doc/html/boost_asio/example/http/server3/request_handler.hpp +doc/html/boost_asio/example/http/server3/request.hpp +doc/html/boost_asio/example/http/server3/request_parser.cpp +doc/html/boost_asio/example/http/server3/request_parser.hpp +doc/html/boost_asio/example/http/server3/server.cpp +doc/html/boost_asio/example/http/server3/server.hpp +doc/html/boost_asio/example/http/server3/win_main.cpp +doc/html/boost_asio/example/http/server/connection.cpp +doc/html/boost_asio/example/http/server/connection.hpp +doc/html/boost_asio/example/http/server/connection_manager.cpp +doc/html/boost_asio/example/http/server/connection_manager.hpp +doc/html/boost_asio/example/http/server/header.hpp +doc/html/boost_asio/example/http/server/mime_types.cpp +doc/html/boost_asio/example/http/server/mime_types.hpp +doc/html/boost_asio/example/http/server/posix_main.cpp +doc/html/boost_asio/example/http/server/reply.cpp +doc/html/boost_asio/example/http/server/reply.hpp +doc/html/boost_asio/example/http/server/request_handler.cpp +doc/html/boost_asio/example/http/server/request_handler.hpp +doc/html/boost_asio/example/http/server/request.hpp +doc/html/boost_asio/example/http/server/request_parser.cpp +doc/html/boost_asio/example/http/server/request_parser.hpp +doc/html/boost_asio/example/http/server/server.cpp +doc/html/boost_asio/example/http/server/server.hpp +doc/html/boost_asio/example/http/server/win_main.cpp +doc/html/boost_asio/example/icmp/icmp_header.hpp +doc/html/boost_asio/example/icmp/ipv4_header.hpp +doc/html/boost_asio/example/icmp/ping.cpp +doc/html/boost_asio/example/invocation/prioritised_handlers.cpp +doc/html/boost_asio/example/iostreams/daytime_client.cpp +doc/html/boost_asio/example/iostreams/daytime_server.cpp +doc/html/boost_asio/example/local/connect_pair.cpp +doc/html/boost_asio/example/local/stream_client.cpp +doc/html/boost_asio/example/local/stream_server.cpp +doc/html/boost_asio/example/multicast/receiver.cpp +doc/html/boost_asio/example/multicast/sender.cpp +doc/html/boost_asio/example/nonblocking/third_party_lib.cpp +doc/html/boost_asio/example/porthopper/client.cpp +doc/html/boost_asio/example/porthopper/protocol.hpp +doc/html/boost_asio/example/porthopper/server.cpp +doc/html/boost_asio/example/serialization/client.cpp +doc/html/boost_asio/example/serialization/connection.hpp +doc/html/boost_asio/example/serialization/server.cpp +doc/html/boost_asio/example/serialization/stock.hpp +doc/html/boost_asio/example/services/basic_logger.hpp +doc/html/boost_asio/example/services/daytime_client.cpp +doc/html/boost_asio/example/services/logger.hpp +doc/html/boost_asio/example/services/logger_service.cpp +doc/html/boost_asio/example/services/logger_service.hpp +doc/html/boost_asio/example/services/stream_socket_service.hpp +doc/html/boost_asio/examples.html +doc/html/boost_asio/example/socks4/socks4.hpp +doc/html/boost_asio/example/socks4/sync_client.cpp +doc/html/boost_asio/example/ssl/client.cpp +doc/html/boost_asio/example/ssl/server.cpp +doc/html/boost_asio/example/timeouts/accept_timeout.cpp +doc/html/boost_asio/example/timeouts/connect_timeout.cpp +doc/html/boost_asio/example/timeouts/datagram_receive_timeout.cpp +doc/html/boost_asio/example/timeouts/stream_receive_timeout.cpp +doc/html/boost_asio/example/timers/tick_count_timer.cpp +doc/html/boost_asio/example/timers/time_t_timer.cpp +doc/html/boost_asio/example/windows/transmit_file.cpp +doc/html/boost_asio/history.html +doc/html/boost_asio.html +doc/html/boost_asio/index.html +doc/html/boost_asio/overview.html +doc/html/boost_asio/overview/implementation.html +doc/html/boost_asio/reference/AcceptHandler.html +doc/html/boost_asio/reference/add_service.html +doc/html/boost_asio/reference/asio_handler_allocate.html +doc/html/boost_asio/reference/asio_handler_deallocate.html +doc/html/boost_asio/reference/asio_handler_invoke.html +doc/html/boost_asio/reference/asynchronous_operations.html +doc/html/boost_asio/reference/AsyncRandomAccessReadDevice.html +doc/html/boost_asio/reference/AsyncRandomAccessWriteDevice.html +doc/html/boost_asio/reference/async_read_at.html +doc/html/boost_asio/reference/async_read.html +doc/html/boost_asio/reference/AsyncReadStream.html +doc/html/boost_asio/reference/async_read_until.html +doc/html/boost_asio/reference/async_write_at.html +doc/html/boost_asio/reference/async_write.html +doc/html/boost_asio/reference/AsyncWriteStream.html +doc/html/boost_asio/reference/basic_datagram_socket/assign.html +doc/html/boost_asio/reference/basic_datagram_socket/async_connect.html +doc/html/boost_asio/reference/basic_datagram_socket/async_receive_from.html +doc/html/boost_asio/reference/basic_datagram_socket/async_receive.html +doc/html/boost_asio/reference/basic_datagram_socket/async_send.html +doc/html/boost_asio/reference/basic_datagram_socket/async_send_to.html +doc/html/boost_asio/reference/basic_datagram_socket/at_mark.html +doc/html/boost_asio/reference/basic_datagram_socket/available.html +doc/html/boost_asio/reference/basic_datagram_socket/basic_datagram_socket.html +doc/html/boost_asio/reference/basic_datagram_socket/bind.html +doc/html/boost_asio/reference/basic_datagram_socket/broadcast.html +doc/html/boost_asio/reference/basic_datagram_socket/bytes_readable.html +doc/html/boost_asio/reference/basic_datagram_socket/cancel.html +doc/html/boost_asio/reference/basic_datagram_socket/close.html +doc/html/boost_asio/reference/basic_datagram_socket/connect.html +doc/html/boost_asio/reference/basic_datagram_socket/debug.html +doc/html/boost_asio/reference/basic_datagram_socket/do_not_route.html +doc/html/boost_asio/reference/basic_datagram_socket/enable_connection_aborted.html +doc/html/boost_asio/reference/basic_datagram_socket/endpoint_type.html +doc/html/boost_asio/reference/basic_datagram_socket/get_io_service.html +doc/html/boost_asio/reference/basic_datagram_socket/get_option.html +doc/html/boost_asio/reference/basic_datagram_socket.html +doc/html/boost_asio/reference/basic_datagram_socket/implementation.html +doc/html/boost_asio/reference/basic_datagram_socket/implementation_type.html +doc/html/boost_asio/reference/basic_datagram_socket/io_control.html +doc/html/boost_asio/reference/basic_datagram_socket/io_service.html +doc/html/boost_asio/reference/basic_datagram_socket/is_open.html +doc/html/boost_asio/reference/basic_datagram_socket/keep_alive.html +doc/html/boost_asio/reference/basic_datagram_socket/linger.html +doc/html/boost_asio/reference/basic_datagram_socket/local_endpoint.html +doc/html/boost_asio/reference/basic_datagram_socket/lowest_layer.html +doc/html/boost_asio/reference/basic_datagram_socket/lowest_layer_type.html +doc/html/boost_asio/reference/basic_datagram_socket/max_connections.html +doc/html/boost_asio/reference/basic_datagram_socket/message_do_not_route.html +doc/html/boost_asio/reference/basic_datagram_socket/message_flags.html +doc/html/boost_asio/reference/basic_datagram_socket/message_out_of_band.html +doc/html/boost_asio/reference/basic_datagram_socket/message_peek.html +doc/html/boost_asio/reference/basic_datagram_socket/native.html +doc/html/boost_asio/reference/basic_datagram_socket/native_type.html +doc/html/boost_asio/reference/basic_datagram_socket/non_blocking_io.html +doc/html/boost_asio/reference/basic_datagram_socket/open.html +doc/html/boost_asio/reference/basic_datagram_socket/protocol_type.html +doc/html/boost_asio/reference/basic_datagram_socket/receive_buffer_size.html +doc/html/boost_asio/reference/basic_datagram_socket/receive_from.html +doc/html/boost_asio/reference/basic_datagram_socket/receive.html +doc/html/boost_asio/reference/basic_datagram_socket/receive_low_watermark.html +doc/html/boost_asio/reference/basic_datagram_socket/remote_endpoint.html +doc/html/boost_asio/reference/basic_datagram_socket/reuse_address.html +doc/html/boost_asio/reference/basic_datagram_socket/send_buffer_size.html +doc/html/boost_asio/reference/basic_datagram_socket/send.html +doc/html/boost_asio/reference/basic_datagram_socket/send_low_watermark.html +doc/html/boost_asio/reference/basic_datagram_socket/send_to.html +doc/html/boost_asio/reference/basic_datagram_socket/service.html +doc/html/boost_asio/reference/basic_datagram_socket/service_type.html +doc/html/boost_asio/reference/basic_datagram_socket/set_option.html +doc/html/boost_asio/reference/basic_datagram_socket/shutdown.html +doc/html/boost_asio/reference/basic_datagram_socket/shutdown_type.html +doc/html/boost_asio/reference/basic_deadline_timer/async_wait.html +doc/html/boost_asio/reference/basic_deadline_timer/basic_deadline_timer.html +doc/html/boost_asio/reference/basic_deadline_timer/cancel.html +doc/html/boost_asio/reference/basic_deadline_timer/duration_type.html +doc/html/boost_asio/reference/basic_deadline_timer/expires_at.html +doc/html/boost_asio/reference/basic_deadline_timer/expires_from_now.html +doc/html/boost_asio/reference/basic_deadline_timer/get_io_service.html +doc/html/boost_asio/reference/basic_deadline_timer.html +doc/html/boost_asio/reference/basic_deadline_timer/implementation.html +doc/html/boost_asio/reference/basic_deadline_timer/implementation_type.html +doc/html/boost_asio/reference/basic_deadline_timer/io_service.html +doc/html/boost_asio/reference/basic_deadline_timer/service.html +doc/html/boost_asio/reference/basic_deadline_timer/service_type.html +doc/html/boost_asio/reference/basic_deadline_timer/time_type.html +doc/html/boost_asio/reference/basic_deadline_timer/traits_type.html +doc/html/boost_asio/reference/basic_deadline_timer/wait.html +doc/html/boost_asio/reference/basic_io_object/_basic_io_object.html +doc/html/boost_asio/reference/basic_io_object/basic_io_object.html +doc/html/boost_asio/reference/basic_io_object/get_io_service.html +doc/html/boost_asio/reference/basic_io_object.html +doc/html/boost_asio/reference/basic_io_object/implementation.html +doc/html/boost_asio/reference/basic_io_object/implementation_type.html +doc/html/boost_asio/reference/basic_io_object/io_service.html +doc/html/boost_asio/reference/basic_io_object/service.html +doc/html/boost_asio/reference/basic_io_object/service_type.html +doc/html/boost_asio/reference/basic_raw_socket/assign.html +doc/html/boost_asio/reference/basic_raw_socket/async_connect.html +doc/html/boost_asio/reference/basic_raw_socket/async_receive_from.html +doc/html/boost_asio/reference/basic_raw_socket/async_receive.html +doc/html/boost_asio/reference/basic_raw_socket/async_send.html +doc/html/boost_asio/reference/basic_raw_socket/async_send_to.html +doc/html/boost_asio/reference/basic_raw_socket/at_mark.html +doc/html/boost_asio/reference/basic_raw_socket/available.html +doc/html/boost_asio/reference/basic_raw_socket/basic_raw_socket.html +doc/html/boost_asio/reference/basic_raw_socket/bind.html +doc/html/boost_asio/reference/basic_raw_socket/broadcast.html +doc/html/boost_asio/reference/basic_raw_socket/bytes_readable.html +doc/html/boost_asio/reference/basic_raw_socket/cancel.html +doc/html/boost_asio/reference/basic_raw_socket/close.html +doc/html/boost_asio/reference/basic_raw_socket/connect.html +doc/html/boost_asio/reference/basic_raw_socket/debug.html +doc/html/boost_asio/reference/basic_raw_socket/do_not_route.html +doc/html/boost_asio/reference/basic_raw_socket/enable_connection_aborted.html +doc/html/boost_asio/reference/basic_raw_socket/endpoint_type.html +doc/html/boost_asio/reference/basic_raw_socket/get_io_service.html +doc/html/boost_asio/reference/basic_raw_socket/get_option.html +doc/html/boost_asio/reference/basic_raw_socket.html +doc/html/boost_asio/reference/basic_raw_socket/implementation.html +doc/html/boost_asio/reference/basic_raw_socket/implementation_type.html +doc/html/boost_asio/reference/basic_raw_socket/io_control.html +doc/html/boost_asio/reference/basic_raw_socket/io_service.html +doc/html/boost_asio/reference/basic_raw_socket/is_open.html +doc/html/boost_asio/reference/basic_raw_socket/keep_alive.html +doc/html/boost_asio/reference/basic_raw_socket/linger.html +doc/html/boost_asio/reference/basic_raw_socket/local_endpoint.html +doc/html/boost_asio/reference/basic_raw_socket/lowest_layer.html +doc/html/boost_asio/reference/basic_raw_socket/lowest_layer_type.html +doc/html/boost_asio/reference/basic_raw_socket/max_connections.html +doc/html/boost_asio/reference/basic_raw_socket/message_do_not_route.html +doc/html/boost_asio/reference/basic_raw_socket/message_flags.html +doc/html/boost_asio/reference/basic_raw_socket/message_out_of_band.html +doc/html/boost_asio/reference/basic_raw_socket/message_peek.html +doc/html/boost_asio/reference/basic_raw_socket/native.html +doc/html/boost_asio/reference/basic_raw_socket/native_type.html +doc/html/boost_asio/reference/basic_raw_socket/non_blocking_io.html +doc/html/boost_asio/reference/basic_raw_socket/open.html +doc/html/boost_asio/reference/basic_raw_socket/protocol_type.html +doc/html/boost_asio/reference/basic_raw_socket/receive_buffer_size.html +doc/html/boost_asio/reference/basic_raw_socket/receive_from.html +doc/html/boost_asio/reference/basic_raw_socket/receive.html +doc/html/boost_asio/reference/basic_raw_socket/receive_low_watermark.html +doc/html/boost_asio/reference/basic_raw_socket/remote_endpoint.html +doc/html/boost_asio/reference/basic_raw_socket/reuse_address.html +doc/html/boost_asio/reference/basic_raw_socket/send_buffer_size.html +doc/html/boost_asio/reference/basic_raw_socket/send.html +doc/html/boost_asio/reference/basic_raw_socket/send_low_watermark.html +doc/html/boost_asio/reference/basic_raw_socket/send_to.html +doc/html/boost_asio/reference/basic_raw_socket/service.html +doc/html/boost_asio/reference/basic_raw_socket/service_type.html +doc/html/boost_asio/reference/basic_raw_socket/set_option.html +doc/html/boost_asio/reference/basic_raw_socket/shutdown.html +doc/html/boost_asio/reference/basic_raw_socket/shutdown_type.html +doc/html/boost_asio/reference/basic_serial_port/assign.html +doc/html/boost_asio/reference/basic_serial_port/async_read_some.html +doc/html/boost_asio/reference/basic_serial_port/async_write_some.html +doc/html/boost_asio/reference/basic_serial_port/basic_serial_port.html +doc/html/boost_asio/reference/basic_serial_port/cancel.html +doc/html/boost_asio/reference/basic_serial_port/close.html +doc/html/boost_asio/reference/basic_serial_port/get_io_service.html +doc/html/boost_asio/reference/basic_serial_port/get_option.html +doc/html/boost_asio/reference/basic_serial_port.html +doc/html/boost_asio/reference/basic_serial_port/implementation.html +doc/html/boost_asio/reference/basic_serial_port/implementation_type.html +doc/html/boost_asio/reference/basic_serial_port/io_service.html +doc/html/boost_asio/reference/basic_serial_port/is_open.html +doc/html/boost_asio/reference/basic_serial_port/lowest_layer.html +doc/html/boost_asio/reference/basic_serial_port/lowest_layer_type.html +doc/html/boost_asio/reference/basic_serial_port/native.html +doc/html/boost_asio/reference/basic_serial_port/native_type.html +doc/html/boost_asio/reference/basic_serial_port/open.html +doc/html/boost_asio/reference/basic_serial_port/read_some.html +doc/html/boost_asio/reference/basic_serial_port/send_break.html +doc/html/boost_asio/reference/basic_serial_port/service.html +doc/html/boost_asio/reference/basic_serial_port/service_type.html +doc/html/boost_asio/reference/basic_serial_port/set_option.html +doc/html/boost_asio/reference/basic_serial_port/write_some.html +doc/html/boost_asio/reference/basic_socket_acceptor/accept.html +doc/html/boost_asio/reference/basic_socket_acceptor/assign.html +doc/html/boost_asio/reference/basic_socket_acceptor/async_accept.html +doc/html/boost_asio/reference/basic_socket_acceptor/basic_socket_acceptor.html +doc/html/boost_asio/reference/basic_socket_acceptor/bind.html +doc/html/boost_asio/reference/basic_socket_acceptor/broadcast.html +doc/html/boost_asio/reference/basic_socket_acceptor/bytes_readable.html +doc/html/boost_asio/reference/basic_socket_acceptor/cancel.html +doc/html/boost_asio/reference/basic_socket_acceptor/close.html +doc/html/boost_asio/reference/basic_socket_acceptor/debug.html +doc/html/boost_asio/reference/basic_socket_acceptor/do_not_route.html +doc/html/boost_asio/reference/basic_socket_acceptor/enable_connection_aborted.html +doc/html/boost_asio/reference/basic_socket_acceptor/endpoint_type.html +doc/html/boost_asio/reference/basic_socket_acceptor/get_io_service.html +doc/html/boost_asio/reference/basic_socket_acceptor/get_option.html +doc/html/boost_asio/reference/basic_socket_acceptor.html +doc/html/boost_asio/reference/basic_socket_acceptor/implementation.html +doc/html/boost_asio/reference/basic_socket_acceptor/implementation_type.html +doc/html/boost_asio/reference/basic_socket_acceptor/io_service.html +doc/html/boost_asio/reference/basic_socket_acceptor/is_open.html +doc/html/boost_asio/reference/basic_socket_acceptor/keep_alive.html +doc/html/boost_asio/reference/basic_socket_acceptor/linger.html +doc/html/boost_asio/reference/basic_socket_acceptor/listen.html +doc/html/boost_asio/reference/basic_socket_acceptor/local_endpoint.html +doc/html/boost_asio/reference/basic_socket_acceptor/max_connections.html +doc/html/boost_asio/reference/basic_socket_acceptor/message_do_not_route.html +doc/html/boost_asio/reference/basic_socket_acceptor/message_flags.html +doc/html/boost_asio/reference/basic_socket_acceptor/message_out_of_band.html +doc/html/boost_asio/reference/basic_socket_acceptor/message_peek.html +doc/html/boost_asio/reference/basic_socket_acceptor/native.html +doc/html/boost_asio/reference/basic_socket_acceptor/native_type.html +doc/html/boost_asio/reference/basic_socket_acceptor/non_blocking_io.html +doc/html/boost_asio/reference/basic_socket_acceptor/open.html +doc/html/boost_asio/reference/basic_socket_acceptor/protocol_type.html +doc/html/boost_asio/reference/basic_socket_acceptor/receive_buffer_size.html +doc/html/boost_asio/reference/basic_socket_acceptor/receive_low_watermark.html +doc/html/boost_asio/reference/basic_socket_acceptor/reuse_address.html +doc/html/boost_asio/reference/basic_socket_acceptor/send_buffer_size.html +doc/html/boost_asio/reference/basic_socket_acceptor/send_low_watermark.html +doc/html/boost_asio/reference/basic_socket_acceptor/service.html +doc/html/boost_asio/reference/basic_socket_acceptor/service_type.html +doc/html/boost_asio/reference/basic_socket_acceptor/set_option.html +doc/html/boost_asio/reference/basic_socket_acceptor/shutdown_type.html +doc/html/boost_asio/reference/basic_socket/assign.html +doc/html/boost_asio/reference/basic_socket/async_connect.html +doc/html/boost_asio/reference/basic_socket/at_mark.html +doc/html/boost_asio/reference/basic_socket/available.html +doc/html/boost_asio/reference/basic_socket/_basic_socket.html +doc/html/boost_asio/reference/basic_socket/basic_socket.html +doc/html/boost_asio/reference/basic_socket/bind.html +doc/html/boost_asio/reference/basic_socket/broadcast.html +doc/html/boost_asio/reference/basic_socket/bytes_readable.html +doc/html/boost_asio/reference/basic_socket/cancel.html +doc/html/boost_asio/reference/basic_socket/close.html +doc/html/boost_asio/reference/basic_socket/connect.html +doc/html/boost_asio/reference/basic_socket/debug.html +doc/html/boost_asio/reference/basic_socket/do_not_route.html +doc/html/boost_asio/reference/basic_socket/enable_connection_aborted.html +doc/html/boost_asio/reference/basic_socket/endpoint_type.html +doc/html/boost_asio/reference/basic_socket/get_io_service.html +doc/html/boost_asio/reference/basic_socket/get_option.html +doc/html/boost_asio/reference/basic_socket.html +doc/html/boost_asio/reference/basic_socket/implementation.html +doc/html/boost_asio/reference/basic_socket/implementation_type.html +doc/html/boost_asio/reference/basic_socket/io_control.html +doc/html/boost_asio/reference/basic_socket/io_service.html +doc/html/boost_asio/reference/basic_socket_iostream/basic_socket_iostream.html +doc/html/boost_asio/reference/basic_socket_iostream/close.html +doc/html/boost_asio/reference/basic_socket_iostream/connect.html +doc/html/boost_asio/reference/basic_socket_iostream.html +doc/html/boost_asio/reference/basic_socket_iostream/rdbuf.html +doc/html/boost_asio/reference/basic_socket/is_open.html +doc/html/boost_asio/reference/basic_socket/keep_alive.html +doc/html/boost_asio/reference/basic_socket/linger.html +doc/html/boost_asio/reference/basic_socket/local_endpoint.html +doc/html/boost_asio/reference/basic_socket/lowest_layer.html +doc/html/boost_asio/reference/basic_socket/lowest_layer_type.html +doc/html/boost_asio/reference/basic_socket/max_connections.html +doc/html/boost_asio/reference/basic_socket/message_do_not_route.html +doc/html/boost_asio/reference/basic_socket/message_flags.html +doc/html/boost_asio/reference/basic_socket/message_out_of_band.html +doc/html/boost_asio/reference/basic_socket/message_peek.html +doc/html/boost_asio/reference/basic_socket/native.html +doc/html/boost_asio/reference/basic_socket/native_type.html +doc/html/boost_asio/reference/basic_socket/non_blocking_io.html +doc/html/boost_asio/reference/basic_socket/open.html +doc/html/boost_asio/reference/basic_socket/protocol_type.html +doc/html/boost_asio/reference/basic_socket/receive_buffer_size.html +doc/html/boost_asio/reference/basic_socket/receive_low_watermark.html +doc/html/boost_asio/reference/basic_socket/remote_endpoint.html +doc/html/boost_asio/reference/basic_socket/reuse_address.html +doc/html/boost_asio/reference/basic_socket/send_buffer_size.html +doc/html/boost_asio/reference/basic_socket/send_low_watermark.html +doc/html/boost_asio/reference/basic_socket/service.html +doc/html/boost_asio/reference/basic_socket/service_type.html +doc/html/boost_asio/reference/basic_socket/set_option.html +doc/html/boost_asio/reference/basic_socket/shutdown.html +doc/html/boost_asio/reference/basic_socket/shutdown_type.html +doc/html/boost_asio/reference/basic_socket_streambuf/assign.html +doc/html/boost_asio/reference/basic_socket_streambuf/async_connect.html +doc/html/boost_asio/reference/basic_socket_streambuf/at_mark.html +doc/html/boost_asio/reference/basic_socket_streambuf/available.html +doc/html/boost_asio/reference/basic_socket_streambuf/_basic_socket_streambuf.html +doc/html/boost_asio/reference/basic_socket_streambuf/basic_socket_streambuf.html +doc/html/boost_asio/reference/basic_socket_streambuf/bind.html +doc/html/boost_asio/reference/basic_socket_streambuf/broadcast.html +doc/html/boost_asio/reference/basic_socket_streambuf/bytes_readable.html +doc/html/boost_asio/reference/basic_socket_streambuf/cancel.html +doc/html/boost_asio/reference/basic_socket_streambuf/close.html +doc/html/boost_asio/reference/basic_socket_streambuf/connect.html +doc/html/boost_asio/reference/basic_socket_streambuf/debug.html +doc/html/boost_asio/reference/basic_socket_streambuf/do_not_route.html +doc/html/boost_asio/reference/basic_socket_streambuf/enable_connection_aborted.html +doc/html/boost_asio/reference/basic_socket_streambuf/endpoint_type.html +doc/html/boost_asio/reference/basic_socket_streambuf/get_io_service.html +doc/html/boost_asio/reference/basic_socket_streambuf/get_option.html +doc/html/boost_asio/reference/basic_socket_streambuf.html +doc/html/boost_asio/reference/basic_socket_streambuf/implementation.html +doc/html/boost_asio/reference/basic_socket_streambuf/implementation_type.html +doc/html/boost_asio/reference/basic_socket_streambuf/io_control.html +doc/html/boost_asio/reference/basic_socket_streambuf/io_service.html +doc/html/boost_asio/reference/basic_socket_streambuf/is_open.html +doc/html/boost_asio/reference/basic_socket_streambuf/keep_alive.html +doc/html/boost_asio/reference/basic_socket_streambuf/linger.html +doc/html/boost_asio/reference/basic_socket_streambuf/local_endpoint.html +doc/html/boost_asio/reference/basic_socket_streambuf/lowest_layer.html +doc/html/boost_asio/reference/basic_socket_streambuf/lowest_layer_type.html +doc/html/boost_asio/reference/basic_socket_streambuf/max_connections.html +doc/html/boost_asio/reference/basic_socket_streambuf/message_do_not_route.html +doc/html/boost_asio/reference/basic_socket_streambuf/message_flags.html +doc/html/boost_asio/reference/basic_socket_streambuf/message_out_of_band.html +doc/html/boost_asio/reference/basic_socket_streambuf/message_peek.html +doc/html/boost_asio/reference/basic_socket_streambuf/native.html +doc/html/boost_asio/reference/basic_socket_streambuf/native_type.html +doc/html/boost_asio/reference/basic_socket_streambuf/non_blocking_io.html +doc/html/boost_asio/reference/basic_socket_streambuf/open.html +doc/html/boost_asio/reference/basic_socket_streambuf/overflow.html +doc/html/boost_asio/reference/basic_socket_streambuf/protocol_type.html +doc/html/boost_asio/reference/basic_socket_streambuf/receive_buffer_size.html +doc/html/boost_asio/reference/basic_socket_streambuf/receive_low_watermark.html +doc/html/boost_asio/reference/basic_socket_streambuf/remote_endpoint.html +doc/html/boost_asio/reference/basic_socket_streambuf/reuse_address.html +doc/html/boost_asio/reference/basic_socket_streambuf/send_buffer_size.html +doc/html/boost_asio/reference/basic_socket_streambuf/send_low_watermark.html +doc/html/boost_asio/reference/basic_socket_streambuf/service.html +doc/html/boost_asio/reference/basic_socket_streambuf/service_type.html +doc/html/boost_asio/reference/basic_socket_streambuf/setbuf.html +doc/html/boost_asio/reference/basic_socket_streambuf/set_option.html +doc/html/boost_asio/reference/basic_socket_streambuf/shutdown.html +doc/html/boost_asio/reference/basic_socket_streambuf/shutdown_type.html +doc/html/boost_asio/reference/basic_socket_streambuf/sync.html +doc/html/boost_asio/reference/basic_socket_streambuf/underflow.html +doc/html/boost_asio/reference/basic_streambuf/basic_streambuf.html +doc/html/boost_asio/reference/basic_streambuf/commit.html +doc/html/boost_asio/reference/basic_streambuf/const_buffers_type.html +doc/html/boost_asio/reference/basic_streambuf/consume.html +doc/html/boost_asio/reference/basic_streambuf/data.html +doc/html/boost_asio/reference/basic_streambuf.html +doc/html/boost_asio/reference/basic_streambuf/max_size.html +doc/html/boost_asio/reference/basic_streambuf/mutable_buffers_type.html +doc/html/boost_asio/reference/basic_streambuf/overflow.html +doc/html/boost_asio/reference/basic_streambuf/prepare.html +doc/html/boost_asio/reference/basic_streambuf/reserve.html +doc/html/boost_asio/reference/basic_streambuf/size.html +doc/html/boost_asio/reference/basic_streambuf/underflow.html +doc/html/boost_asio/reference/basic_stream_socket/assign.html +doc/html/boost_asio/reference/basic_stream_socket/async_connect.html +doc/html/boost_asio/reference/basic_stream_socket/async_read_some.html +doc/html/boost_asio/reference/basic_stream_socket/async_receive.html +doc/html/boost_asio/reference/basic_stream_socket/async_send.html +doc/html/boost_asio/reference/basic_stream_socket/async_write_some.html +doc/html/boost_asio/reference/basic_stream_socket/at_mark.html +doc/html/boost_asio/reference/basic_stream_socket/available.html +doc/html/boost_asio/reference/basic_stream_socket/basic_stream_socket.html +doc/html/boost_asio/reference/basic_stream_socket/bind.html +doc/html/boost_asio/reference/basic_stream_socket/broadcast.html +doc/html/boost_asio/reference/basic_stream_socket/bytes_readable.html +doc/html/boost_asio/reference/basic_stream_socket/cancel.html +doc/html/boost_asio/reference/basic_stream_socket/close.html +doc/html/boost_asio/reference/basic_stream_socket/connect.html +doc/html/boost_asio/reference/basic_stream_socket/debug.html +doc/html/boost_asio/reference/basic_stream_socket/do_not_route.html +doc/html/boost_asio/reference/basic_stream_socket/enable_connection_aborted.html +doc/html/boost_asio/reference/basic_stream_socket/endpoint_type.html +doc/html/boost_asio/reference/basic_stream_socket/get_io_service.html +doc/html/boost_asio/reference/basic_stream_socket/get_option.html +doc/html/boost_asio/reference/basic_stream_socket.html +doc/html/boost_asio/reference/basic_stream_socket/implementation.html +doc/html/boost_asio/reference/basic_stream_socket/implementation_type.html +doc/html/boost_asio/reference/basic_stream_socket/io_control.html +doc/html/boost_asio/reference/basic_stream_socket/io_service.html +doc/html/boost_asio/reference/basic_stream_socket/is_open.html +doc/html/boost_asio/reference/basic_stream_socket/keep_alive.html +doc/html/boost_asio/reference/basic_stream_socket/linger.html +doc/html/boost_asio/reference/basic_stream_socket/local_endpoint.html +doc/html/boost_asio/reference/basic_stream_socket/lowest_layer.html +doc/html/boost_asio/reference/basic_stream_socket/lowest_layer_type.html +doc/html/boost_asio/reference/basic_stream_socket/max_connections.html +doc/html/boost_asio/reference/basic_stream_socket/message_do_not_route.html +doc/html/boost_asio/reference/basic_stream_socket/message_flags.html +doc/html/boost_asio/reference/basic_stream_socket/message_out_of_band.html +doc/html/boost_asio/reference/basic_stream_socket/message_peek.html +doc/html/boost_asio/reference/basic_stream_socket/native.html +doc/html/boost_asio/reference/basic_stream_socket/native_type.html +doc/html/boost_asio/reference/basic_stream_socket/non_blocking_io.html +doc/html/boost_asio/reference/basic_stream_socket/open.html +doc/html/boost_asio/reference/basic_stream_socket/protocol_type.html +doc/html/boost_asio/reference/basic_stream_socket/read_some.html +doc/html/boost_asio/reference/basic_stream_socket/receive_buffer_size.html +doc/html/boost_asio/reference/basic_stream_socket/receive.html +doc/html/boost_asio/reference/basic_stream_socket/receive_low_watermark.html +doc/html/boost_asio/reference/basic_stream_socket/remote_endpoint.html +doc/html/boost_asio/reference/basic_stream_socket/reuse_address.html +doc/html/boost_asio/reference/basic_stream_socket/send_buffer_size.html +doc/html/boost_asio/reference/basic_stream_socket/send.html +doc/html/boost_asio/reference/basic_stream_socket/send_low_watermark.html +doc/html/boost_asio/reference/basic_stream_socket/service.html +doc/html/boost_asio/reference/basic_stream_socket/service_type.html +doc/html/boost_asio/reference/basic_stream_socket/set_option.html +doc/html/boost_asio/reference/basic_stream_socket/shutdown.html +doc/html/boost_asio/reference/basic_stream_socket/shutdown_type.html +doc/html/boost_asio/reference/basic_stream_socket/write_some.html +doc/html/boost_asio/reference/buffered_read_stream/async_fill.html +doc/html/boost_asio/reference/buffered_read_stream/async_read_some.html +doc/html/boost_asio/reference/buffered_read_stream/async_write_some.html +doc/html/boost_asio/reference/buffered_read_stream/buffered_read_stream.html +doc/html/boost_asio/reference/buffered_read_stream/close.html +doc/html/boost_asio/reference/buffered_read_stream/default_buffer_size.html +doc/html/boost_asio/reference/buffered_read_stream/fill.html +doc/html/boost_asio/reference/buffered_read_stream/get_io_service.html +doc/html/boost_asio/reference/buffered_read_stream.html +doc/html/boost_asio/reference/buffered_read_stream/in_avail.html +doc/html/boost_asio/reference/buffered_read_stream/io_service.html +doc/html/boost_asio/reference/buffered_read_stream/lowest_layer.html +doc/html/boost_asio/reference/buffered_read_stream/lowest_layer_type.html +doc/html/boost_asio/reference/buffered_read_stream/next_layer.html +doc/html/boost_asio/reference/buffered_read_stream/next_layer_type.html +doc/html/boost_asio/reference/buffered_read_stream/peek.html +doc/html/boost_asio/reference/buffered_read_stream/read_some.html +doc/html/boost_asio/reference/buffered_read_stream/write_some.html +doc/html/boost_asio/reference/buffered_stream/async_fill.html +doc/html/boost_asio/reference/buffered_stream/async_flush.html +doc/html/boost_asio/reference/buffered_stream/async_read_some.html +doc/html/boost_asio/reference/buffered_stream/async_write_some.html +doc/html/boost_asio/reference/buffered_stream/buffered_stream.html +doc/html/boost_asio/reference/buffered_stream/close.html +doc/html/boost_asio/reference/buffered_stream/fill.html +doc/html/boost_asio/reference/buffered_stream/flush.html +doc/html/boost_asio/reference/buffered_stream/get_io_service.html +doc/html/boost_asio/reference/buffered_stream.html +doc/html/boost_asio/reference/buffered_stream/in_avail.html +doc/html/boost_asio/reference/buffered_stream/io_service.html +doc/html/boost_asio/reference/buffered_stream/lowest_layer.html +doc/html/boost_asio/reference/buffered_stream/lowest_layer_type.html +doc/html/boost_asio/reference/buffered_stream/next_layer.html +doc/html/boost_asio/reference/buffered_stream/next_layer_type.html +doc/html/boost_asio/reference/buffered_stream/peek.html +doc/html/boost_asio/reference/buffered_stream/read_some.html +doc/html/boost_asio/reference/buffered_stream/write_some.html +doc/html/boost_asio/reference/buffered_write_stream/async_flush.html +doc/html/boost_asio/reference/buffered_write_stream/async_read_some.html +doc/html/boost_asio/reference/buffered_write_stream/async_write_some.html +doc/html/boost_asio/reference/buffered_write_stream/buffered_write_stream.html +doc/html/boost_asio/reference/buffered_write_stream/close.html +doc/html/boost_asio/reference/buffered_write_stream/default_buffer_size.html +doc/html/boost_asio/reference/buffered_write_stream/flush.html +doc/html/boost_asio/reference/buffered_write_stream/get_io_service.html +doc/html/boost_asio/reference/buffered_write_stream.html +doc/html/boost_asio/reference/buffered_write_stream/in_avail.html +doc/html/boost_asio/reference/buffered_write_stream/io_service.html +doc/html/boost_asio/reference/buffered_write_stream/lowest_layer.html +doc/html/boost_asio/reference/buffered_write_stream/lowest_layer_type.html +doc/html/boost_asio/reference/buffered_write_stream/next_layer.html +doc/html/boost_asio/reference/buffered_write_stream/next_layer_type.html +doc/html/boost_asio/reference/buffered_write_stream/peek.html +doc/html/boost_asio/reference/buffered_write_stream/read_some.html +doc/html/boost_asio/reference/buffered_write_stream/write_some.html +doc/html/boost_asio/reference/buffer.html +doc/html/boost_asio/reference/buffers_begin.html +doc/html/boost_asio/reference/buffers_end.html +doc/html/boost_asio/reference/buffers_iterator/begin.html +doc/html/boost_asio/reference/buffers_iterator/buffers_iterator.html +doc/html/boost_asio/reference/buffers_iterator/end.html +doc/html/boost_asio/reference/buffers_iterator.html +doc/html/boost_asio/reference/CompletionHandler.html +doc/html/boost_asio/reference/ConnectHandler.html +doc/html/boost_asio/reference/const_buffer/buffer_cast.html +doc/html/boost_asio/reference/const_buffer/buffer_size.html +doc/html/boost_asio/reference/const_buffer/const_buffer.html +doc/html/boost_asio/reference/const_buffer.html +doc/html/boost_asio/reference/const_buffer/operator_plus_.html +doc/html/boost_asio/reference/const_buffers_1/begin.html +doc/html/boost_asio/reference/const_buffers_1/buffer_cast.html +doc/html/boost_asio/reference/const_buffers_1/buffer_size.html +doc/html/boost_asio/reference/const_buffers_1/const_buffers_1.html +doc/html/boost_asio/reference/const_buffers_1/const_iterator.html +doc/html/boost_asio/reference/const_buffers_1/end.html +doc/html/boost_asio/reference/const_buffers_1.html +doc/html/boost_asio/reference/const_buffers_1/operator_plus_.html +doc/html/boost_asio/reference/const_buffers_1/value_type.html +doc/html/boost_asio/reference/ConstBufferSequence.html +doc/html/boost_asio/reference/ConvertibleToConstBuffer.html +doc/html/boost_asio/reference/ConvertibleToMutableBuffer.html +doc/html/boost_asio/reference/datagram_socket_service/assign.html +doc/html/boost_asio/reference/datagram_socket_service/async_connect.html +doc/html/boost_asio/reference/datagram_socket_service/async_receive_from.html +doc/html/boost_asio/reference/datagram_socket_service/async_receive.html +doc/html/boost_asio/reference/datagram_socket_service/async_send.html +doc/html/boost_asio/reference/datagram_socket_service/async_send_to.html +doc/html/boost_asio/reference/datagram_socket_service/at_mark.html +doc/html/boost_asio/reference/datagram_socket_service/available.html +doc/html/boost_asio/reference/datagram_socket_service/bind.html +doc/html/boost_asio/reference/datagram_socket_service/cancel.html +doc/html/boost_asio/reference/datagram_socket_service/close.html +doc/html/boost_asio/reference/datagram_socket_service/connect.html +doc/html/boost_asio/reference/datagram_socket_service/construct.html +doc/html/boost_asio/reference/datagram_socket_service/datagram_socket_service.html +doc/html/boost_asio/reference/datagram_socket_service/destroy.html +doc/html/boost_asio/reference/datagram_socket_service/endpoint_type.html +doc/html/boost_asio/reference/datagram_socket_service/get_io_service.html +doc/html/boost_asio/reference/datagram_socket_service/get_option.html +doc/html/boost_asio/reference/datagram_socket_service.html +doc/html/boost_asio/reference/DatagramSocketService.html +doc/html/boost_asio/reference/datagram_socket_service/id.html +doc/html/boost_asio/reference/datagram_socket_service/implementation_type.html +doc/html/boost_asio/reference/datagram_socket_service/io_control.html +doc/html/boost_asio/reference/datagram_socket_service/io_service.html +doc/html/boost_asio/reference/datagram_socket_service/is_open.html +doc/html/boost_asio/reference/datagram_socket_service/local_endpoint.html +doc/html/boost_asio/reference/datagram_socket_service/native.html +doc/html/boost_asio/reference/datagram_socket_service/native_type.html +doc/html/boost_asio/reference/datagram_socket_service/open.html +doc/html/boost_asio/reference/datagram_socket_service/protocol_type.html +doc/html/boost_asio/reference/datagram_socket_service/receive_from.html +doc/html/boost_asio/reference/datagram_socket_service/receive.html +doc/html/boost_asio/reference/datagram_socket_service/remote_endpoint.html +doc/html/boost_asio/reference/datagram_socket_service/send.html +doc/html/boost_asio/reference/datagram_socket_service/send_to.html +doc/html/boost_asio/reference/datagram_socket_service/set_option.html +doc/html/boost_asio/reference/datagram_socket_service/shutdown.html +doc/html/boost_asio/reference/datagram_socket_service/shutdown_service.html +doc/html/boost_asio/reference/deadline_timer.html +doc/html/boost_asio/reference/deadline_timer_service/async_wait.html +doc/html/boost_asio/reference/deadline_timer_service/cancel.html +doc/html/boost_asio/reference/deadline_timer_service/construct.html +doc/html/boost_asio/reference/deadline_timer_service/deadline_timer_service.html +doc/html/boost_asio/reference/deadline_timer_service/destroy.html +doc/html/boost_asio/reference/deadline_timer_service/duration_type.html +doc/html/boost_asio/reference/deadline_timer_service/expires_at.html +doc/html/boost_asio/reference/deadline_timer_service/expires_from_now.html +doc/html/boost_asio/reference/deadline_timer_service/get_io_service.html +doc/html/boost_asio/reference/deadline_timer_service.html +doc/html/boost_asio/reference/deadline_timer_service/id.html +doc/html/boost_asio/reference/deadline_timer_service/implementation_type.html +doc/html/boost_asio/reference/deadline_timer_service/io_service.html +doc/html/boost_asio/reference/deadline_timer_service/shutdown_service.html +doc/html/boost_asio/reference/deadline_timer_service/time_type.html +doc/html/boost_asio/reference/deadline_timer_service/traits_type.html +doc/html/boost_asio/reference/deadline_timer_service/wait.html +doc/html/boost_asio/reference/DescriptorService.html +doc/html/boost_asio/reference/Endpoint.html +doc/html/boost_asio/reference/error__addrinfo_category.html +doc/html/boost_asio/reference/error__addrinfo_errors.html +doc/html/boost_asio/reference/error__basic_errors.html +doc/html/boost_asio/reference/error__get_addrinfo_category.html +doc/html/boost_asio/reference/error__get_misc_category.html +doc/html/boost_asio/reference/error__get_netdb_category.html +doc/html/boost_asio/reference/error__get_ssl_category.html +doc/html/boost_asio/reference/error__get_system_category.html +doc/html/boost_asio/reference/error__make_error_code.html +doc/html/boost_asio/reference/error__misc_category.html +doc/html/boost_asio/reference/error__misc_errors.html +doc/html/boost_asio/reference/error__netdb_category.html +doc/html/boost_asio/reference/error__netdb_errors.html +doc/html/boost_asio/reference/error__ssl_category.html +doc/html/boost_asio/reference/error__ssl_errors.html +doc/html/boost_asio/reference/error__system_category.html +doc/html/boost_asio/reference/GettableSerialPortOption.html +doc/html/boost_asio/reference/GettableSocketOption.html +doc/html/boost_asio/reference/Handler.html +doc/html/boost_asio/reference/HandleService.html +doc/html/boost_asio/reference/has_service.html +doc/html/boost_asio/reference.html +doc/html/boost_asio/reference/InternetProtocol.html +doc/html/boost_asio/reference/invalid_service_owner.html +doc/html/boost_asio/reference/invalid_service_owner/invalid_service_owner.html +doc/html/boost_asio/reference/IoControlCommand.html +doc/html/boost_asio/reference/IoObjectService.html +doc/html/boost_asio/reference/io_service/add_service.html +doc/html/boost_asio/reference/io_service/dispatch.html +doc/html/boost_asio/reference/io_service/has_service.html +doc/html/boost_asio/reference/io_service.html +doc/html/boost_asio/reference/io_service__id.html +doc/html/boost_asio/reference/io_service__id/id.html +doc/html/boost_asio/reference/io_service/_io_service.html +doc/html/boost_asio/reference/io_service/io_service.html +doc/html/boost_asio/reference/io_service/poll.html +doc/html/boost_asio/reference/io_service/poll_one.html +doc/html/boost_asio/reference/io_service/post.html +doc/html/boost_asio/reference/io_service/reset.html +doc/html/boost_asio/reference/io_service/run.html +doc/html/boost_asio/reference/io_service/run_one.html +doc/html/boost_asio/reference/io_service__service/get_io_service.html +doc/html/boost_asio/reference/io_service__service.html +doc/html/boost_asio/reference/io_service__service/io_service.html +doc/html/boost_asio/reference/io_service__service/_service.html +doc/html/boost_asio/reference/io_service__service/service.html +doc/html/boost_asio/reference/io_service/stop.html +doc/html/boost_asio/reference/io_service__strand/dispatch.html +doc/html/boost_asio/reference/io_service__strand/get_io_service.html +doc/html/boost_asio/reference/io_service__strand.html +doc/html/boost_asio/reference/io_service__strand/io_service.html +doc/html/boost_asio/reference/io_service__strand/post.html +doc/html/boost_asio/reference/io_service__strand/_strand.html +doc/html/boost_asio/reference/io_service__strand/strand.html +doc/html/boost_asio/reference/io_service__strand/wrap.html +doc/html/boost_asio/reference/io_service/use_service.html +doc/html/boost_asio/reference/io_service__work/get_io_service.html +doc/html/boost_asio/reference/io_service__work.html +doc/html/boost_asio/reference/io_service__work/io_service.html +doc/html/boost_asio/reference/io_service__work/_work.html +doc/html/boost_asio/reference/io_service__work/work.html +doc/html/boost_asio/reference/io_service/wrap.html +doc/html/boost_asio/reference/ip__address/address.html +doc/html/boost_asio/reference/ip__address/from_string.html +doc/html/boost_asio/reference/ip__address.html +doc/html/boost_asio/reference/ip__address/is_v4.html +doc/html/boost_asio/reference/ip__address/is_v6.html +doc/html/boost_asio/reference/ip__address/operator_eq__eq_.html +doc/html/boost_asio/reference/ip__address/operator_eq_.html +doc/html/boost_asio/reference/ip__address/operator_lt_.html +doc/html/boost_asio/reference/ip__address/operator_lt__lt_.html +doc/html/boost_asio/reference/ip__address/operator_not__eq_.html +doc/html/boost_asio/reference/ip__address/to_string.html +doc/html/boost_asio/reference/ip__address/to_v4.html +doc/html/boost_asio/reference/ip__address/to_v6.html +doc/html/boost_asio/reference/ip__address_v4/address_v4.html +doc/html/boost_asio/reference/ip__address_v4/any.html +doc/html/boost_asio/reference/ip__address_v4/broadcast.html +doc/html/boost_asio/reference/ip__address_v4/bytes_type.html +doc/html/boost_asio/reference/ip__address_v4/from_string.html +doc/html/boost_asio/reference/ip__address_v4.html +doc/html/boost_asio/reference/ip__address_v4/is_class_a.html +doc/html/boost_asio/reference/ip__address_v4/is_class_b.html +doc/html/boost_asio/reference/ip__address_v4/is_class_c.html +doc/html/boost_asio/reference/ip__address_v4/is_multicast.html +doc/html/boost_asio/reference/ip__address_v4/loopback.html +doc/html/boost_asio/reference/ip__address_v4/netmask.html +doc/html/boost_asio/reference/ip__address_v4/operator_eq__eq_.html +doc/html/boost_asio/reference/ip__address_v4/operator_eq_.html +doc/html/boost_asio/reference/ip__address_v4/operator_gt__eq_.html +doc/html/boost_asio/reference/ip__address_v4/operator_gt_.html +doc/html/boost_asio/reference/ip__address_v4/operator_lt__eq_.html +doc/html/boost_asio/reference/ip__address_v4/operator_lt_.html +doc/html/boost_asio/reference/ip__address_v4/operator_lt__lt_.html +doc/html/boost_asio/reference/ip__address_v4/operator_not__eq_.html +doc/html/boost_asio/reference/ip__address_v4/to_bytes.html +doc/html/boost_asio/reference/ip__address_v4/to_string.html +doc/html/boost_asio/reference/ip__address_v4/to_ulong.html +doc/html/boost_asio/reference/ip__address_v6/address_v6.html +doc/html/boost_asio/reference/ip__address_v6/any.html +doc/html/boost_asio/reference/ip__address_v6/bytes_type.html +doc/html/boost_asio/reference/ip__address_v6/from_string.html +doc/html/boost_asio/reference/ip__address_v6.html +doc/html/boost_asio/reference/ip__address_v6/is_link_local.html +doc/html/boost_asio/reference/ip__address_v6/is_loopback.html +doc/html/boost_asio/reference/ip__address_v6/is_multicast_global.html +doc/html/boost_asio/reference/ip__address_v6/is_multicast.html +doc/html/boost_asio/reference/ip__address_v6/is_multicast_link_local.html +doc/html/boost_asio/reference/ip__address_v6/is_multicast_node_local.html +doc/html/boost_asio/reference/ip__address_v6/is_multicast_org_local.html +doc/html/boost_asio/reference/ip__address_v6/is_multicast_site_local.html +doc/html/boost_asio/reference/ip__address_v6/is_site_local.html +doc/html/boost_asio/reference/ip__address_v6/is_unspecified.html +doc/html/boost_asio/reference/ip__address_v6/is_v4_compatible.html +doc/html/boost_asio/reference/ip__address_v6/is_v4_mapped.html +doc/html/boost_asio/reference/ip__address_v6/loopback.html +doc/html/boost_asio/reference/ip__address_v6/operator_eq__eq_.html +doc/html/boost_asio/reference/ip__address_v6/operator_eq_.html +doc/html/boost_asio/reference/ip__address_v6/operator_gt__eq_.html +doc/html/boost_asio/reference/ip__address_v6/operator_gt_.html +doc/html/boost_asio/reference/ip__address_v6/operator_lt__eq_.html +doc/html/boost_asio/reference/ip__address_v6/operator_lt_.html +doc/html/boost_asio/reference/ip__address_v6/operator_lt__lt_.html +doc/html/boost_asio/reference/ip__address_v6/operator_not__eq_.html +doc/html/boost_asio/reference/ip__address_v6/scope_id.html +doc/html/boost_asio/reference/ip__address_v6/to_bytes.html +doc/html/boost_asio/reference/ip__address_v6/to_string.html +doc/html/boost_asio/reference/ip__address_v6/to_v4.html +doc/html/boost_asio/reference/ip__address_v6/v4_compatible.html +doc/html/boost_asio/reference/ip__address_v6/v4_mapped.html +doc/html/boost_asio/reference/ip__basic_endpoint/address.html +doc/html/boost_asio/reference/ip__basic_endpoint/basic_endpoint.html +doc/html/boost_asio/reference/ip__basic_endpoint/capacity.html +doc/html/boost_asio/reference/ip__basic_endpoint/data.html +doc/html/boost_asio/reference/ip__basic_endpoint/data_type.html +doc/html/boost_asio/reference/ip__basic_endpoint.html +doc/html/boost_asio/reference/ip__basic_endpoint/operator_eq__eq_.html +doc/html/boost_asio/reference/ip__basic_endpoint/operator_eq_.html +doc/html/boost_asio/reference/ip__basic_endpoint/operator_lt_.html +doc/html/boost_asio/reference/ip__basic_endpoint/operator_lt__lt_.html +doc/html/boost_asio/reference/ip__basic_endpoint/operator_not__eq_.html +doc/html/boost_asio/reference/ip__basic_endpoint/port.html +doc/html/boost_asio/reference/ip__basic_endpoint/protocol.html +doc/html/boost_asio/reference/ip__basic_endpoint/protocol_type.html +doc/html/boost_asio/reference/ip__basic_endpoint/resize.html +doc/html/boost_asio/reference/ip__basic_endpoint/size.html +doc/html/boost_asio/reference/ip__basic_resolver/async_resolve.html +doc/html/boost_asio/reference/ip__basic_resolver/basic_resolver.html +doc/html/boost_asio/reference/ip__basic_resolver/cancel.html +doc/html/boost_asio/reference/ip__basic_resolver/endpoint_type.html +doc/html/boost_asio/reference/ip__basic_resolver_entry/basic_resolver_entry.html +doc/html/boost_asio/reference/ip__basic_resolver_entry/endpoint.html +doc/html/boost_asio/reference/ip__basic_resolver_entry/endpoint_type.html +doc/html/boost_asio/reference/ip__basic_resolver_entry/host_name.html +doc/html/boost_asio/reference/ip__basic_resolver_entry.html +doc/html/boost_asio/reference/ip__basic_resolver_entry/operator_endpoint_type.html +doc/html/boost_asio/reference/ip__basic_resolver_entry/protocol_type.html +doc/html/boost_asio/reference/ip__basic_resolver_entry/service_name.html +doc/html/boost_asio/reference/ip__basic_resolver/get_io_service.html +doc/html/boost_asio/reference/ip__basic_resolver.html +doc/html/boost_asio/reference/ip__basic_resolver/implementation.html +doc/html/boost_asio/reference/ip__basic_resolver/implementation_type.html +doc/html/boost_asio/reference/ip__basic_resolver/io_service.html +doc/html/boost_asio/reference/ip__basic_resolver_iterator/basic_resolver_iterator.html +doc/html/boost_asio/reference/ip__basic_resolver_iterator/create.html +doc/html/boost_asio/reference/ip__basic_resolver_iterator.html +doc/html/boost_asio/reference/ip__basic_resolver/iterator.html +doc/html/boost_asio/reference/ip__basic_resolver/protocol_type.html +doc/html/boost_asio/reference/ip__basic_resolver_query/address_configured.html +doc/html/boost_asio/reference/ip__basic_resolver_query/all_matching.html +doc/html/boost_asio/reference/ip__basic_resolver_query/basic_resolver_query.html +doc/html/boost_asio/reference/ip__basic_resolver_query/canonical_name.html +doc/html/boost_asio/reference/ip__basic_resolver_query/hints.html +doc/html/boost_asio/reference/ip__basic_resolver_query/host_name.html +doc/html/boost_asio/reference/ip__basic_resolver_query.html +doc/html/boost_asio/reference/ip__basic_resolver/query.html +doc/html/boost_asio/reference/ip__basic_resolver_query/numeric_host.html +doc/html/boost_asio/reference/ip__basic_resolver_query/numeric_service.html +doc/html/boost_asio/reference/ip__basic_resolver_query/passive.html +doc/html/boost_asio/reference/ip__basic_resolver_query/protocol_type.html +doc/html/boost_asio/reference/ip__basic_resolver_query/service_name.html +doc/html/boost_asio/reference/ip__basic_resolver_query/v4_mapped.html +doc/html/boost_asio/reference/ip__basic_resolver/resolve.html +doc/html/boost_asio/reference/ip__basic_resolver/service.html +doc/html/boost_asio/reference/ip__basic_resolver/service_type.html +doc/html/boost_asio/reference/ip__host_name.html +doc/html/boost_asio/reference/ip__icmp/endpoint.html +doc/html/boost_asio/reference/ip__icmp/family.html +doc/html/boost_asio/reference/ip__icmp.html +doc/html/boost_asio/reference/ip__icmp/operator_eq__eq_.html +doc/html/boost_asio/reference/ip__icmp/operator_not__eq_.html +doc/html/boost_asio/reference/ip__icmp/protocol.html +doc/html/boost_asio/reference/ip__icmp/resolver.html +doc/html/boost_asio/reference/ip__icmp/resolver_iterator.html +doc/html/boost_asio/reference/ip__icmp/resolver_query.html +doc/html/boost_asio/reference/ip__icmp/socket.html +doc/html/boost_asio/reference/ip__icmp/type.html +doc/html/boost_asio/reference/ip__icmp/v4.html +doc/html/boost_asio/reference/ip__icmp/v6.html +doc/html/boost_asio/reference/ip__multicast__enable_loopback.html +doc/html/boost_asio/reference/ip__multicast__hops.html +doc/html/boost_asio/reference/ip__multicast__join_group.html +doc/html/boost_asio/reference/ip__multicast__leave_group.html +doc/html/boost_asio/reference/ip__multicast__outbound_interface.html +doc/html/boost_asio/reference/ip__resolver_query_base/address_configured.html +doc/html/boost_asio/reference/ip__resolver_query_base/all_matching.html +doc/html/boost_asio/reference/ip__resolver_query_base/canonical_name.html +doc/html/boost_asio/reference/ip__resolver_query_base.html +doc/html/boost_asio/reference/ip__resolver_query_base/numeric_host.html +doc/html/boost_asio/reference/ip__resolver_query_base/numeric_service.html +doc/html/boost_asio/reference/ip__resolver_query_base/passive.html +doc/html/boost_asio/reference/ip__resolver_query_base/_resolver_query_base.html +doc/html/boost_asio/reference/ip__resolver_query_base/v4_mapped.html +doc/html/boost_asio/reference/ip__resolver_service/async_resolve.html +doc/html/boost_asio/reference/ip__resolver_service/cancel.html +doc/html/boost_asio/reference/ip__resolver_service/construct.html +doc/html/boost_asio/reference/ip__resolver_service/destroy.html +doc/html/boost_asio/reference/ip__resolver_service/endpoint_type.html +doc/html/boost_asio/reference/ip__resolver_service/get_io_service.html +doc/html/boost_asio/reference/ip__resolver_service.html +doc/html/boost_asio/reference/ip__resolver_service/id.html +doc/html/boost_asio/reference/ip__resolver_service/implementation_type.html +doc/html/boost_asio/reference/ip__resolver_service/io_service.html +doc/html/boost_asio/reference/ip__resolver_service/iterator_type.html +doc/html/boost_asio/reference/ip__resolver_service/protocol_type.html +doc/html/boost_asio/reference/ip__resolver_service/query_type.html +doc/html/boost_asio/reference/ip__resolver_service/resolve.html +doc/html/boost_asio/reference/ip__resolver_service/resolver_service.html +doc/html/boost_asio/reference/ip__resolver_service/shutdown_service.html +doc/html/boost_asio/reference/ip__tcp/acceptor.html +doc/html/boost_asio/reference/ip__tcp/endpoint.html +doc/html/boost_asio/reference/ip__tcp/family.html +doc/html/boost_asio/reference/ip__tcp.html +doc/html/boost_asio/reference/ip__tcp/iostream.html +doc/html/boost_asio/reference/ip__tcp/no_delay.html +doc/html/boost_asio/reference/ip__tcp/operator_eq__eq_.html +doc/html/boost_asio/reference/ip__tcp/operator_not__eq_.html +doc/html/boost_asio/reference/ip__tcp/protocol.html +doc/html/boost_asio/reference/ip__tcp/resolver.html +doc/html/boost_asio/reference/ip__tcp/resolver_iterator.html +doc/html/boost_asio/reference/ip__tcp/resolver_query.html +doc/html/boost_asio/reference/ip__tcp/socket.html +doc/html/boost_asio/reference/ip__tcp/type.html +doc/html/boost_asio/reference/ip__tcp/v4.html +doc/html/boost_asio/reference/ip__tcp/v6.html +doc/html/boost_asio/reference/ip__udp/endpoint.html +doc/html/boost_asio/reference/ip__udp/family.html +doc/html/boost_asio/reference/ip__udp.html +doc/html/boost_asio/reference/ip__udp/operator_eq__eq_.html +doc/html/boost_asio/reference/ip__udp/operator_not__eq_.html +doc/html/boost_asio/reference/ip__udp/protocol.html +doc/html/boost_asio/reference/ip__udp/resolver.html +doc/html/boost_asio/reference/ip__udp/resolver_iterator.html +doc/html/boost_asio/reference/ip__udp/resolver_query.html +doc/html/boost_asio/reference/ip__udp/socket.html +doc/html/boost_asio/reference/ip__udp/type.html +doc/html/boost_asio/reference/ip__udp/v4.html +doc/html/boost_asio/reference/ip__udp/v6.html +doc/html/boost_asio/reference/ip__unicast__hops.html +doc/html/boost_asio/reference/ip__v6_only.html +doc/html/boost_asio/reference/is_error_code_enum_lt__addrinfo_errors__gt_/value.html +doc/html/boost_asio/reference/is_error_code_enum_lt__basic_errors__gt_/value.html +doc/html/boost_asio/reference/is_error_code_enum_lt__misc_errors__gt_/value.html +doc/html/boost_asio/reference/is_error_code_enum_lt__netdb_errors__gt_/value.html +doc/html/boost_asio/reference/is_error_code_enum_lt__ssl_errors__gt_/value.html +doc/html/boost_asio/reference/is_match_condition.html +doc/html/boost_asio/reference/is_match_condition/value.html +doc/html/boost_asio/reference/is_read_buffered.html +doc/html/boost_asio/reference/is_read_buffered/value.html +doc/html/boost_asio/reference/is_write_buffered.html +doc/html/boost_asio/reference/is_write_buffered/value.html +doc/html/boost_asio/reference/local__basic_endpoint/basic_endpoint.html +doc/html/boost_asio/reference/local__basic_endpoint/capacity.html +doc/html/boost_asio/reference/local__basic_endpoint/data.html +doc/html/boost_asio/reference/local__basic_endpoint/data_type.html +doc/html/boost_asio/reference/local__basic_endpoint.html +doc/html/boost_asio/reference/local__basic_endpoint/operator_eq__eq_.html +doc/html/boost_asio/reference/local__basic_endpoint/operator_eq_.html +doc/html/boost_asio/reference/local__basic_endpoint/operator_lt_.html +doc/html/boost_asio/reference/local__basic_endpoint/operator_lt__lt_.html +doc/html/boost_asio/reference/local__basic_endpoint/operator_not__eq_.html +doc/html/boost_asio/reference/local__basic_endpoint/path.html +doc/html/boost_asio/reference/local__basic_endpoint/protocol.html +doc/html/boost_asio/reference/local__basic_endpoint/protocol_type.html +doc/html/boost_asio/reference/local__basic_endpoint/resize.html +doc/html/boost_asio/reference/local__basic_endpoint/size.html +doc/html/boost_asio/reference/local__connect_pair.html +doc/html/boost_asio/reference/local__datagram_protocol/endpoint.html +doc/html/boost_asio/reference/local__datagram_protocol/family.html +doc/html/boost_asio/reference/local__datagram_protocol.html +doc/html/boost_asio/reference/local__datagram_protocol/protocol.html +doc/html/boost_asio/reference/local__datagram_protocol/socket.html +doc/html/boost_asio/reference/local__datagram_protocol/type.html +doc/html/boost_asio/reference/local__stream_protocol/acceptor.html +doc/html/boost_asio/reference/local__stream_protocol/endpoint.html +doc/html/boost_asio/reference/local__stream_protocol/family.html +doc/html/boost_asio/reference/local__stream_protocol.html +doc/html/boost_asio/reference/local__stream_protocol/iostream.html +doc/html/boost_asio/reference/local__stream_protocol/protocol.html +doc/html/boost_asio/reference/local__stream_protocol/socket.html +doc/html/boost_asio/reference/local__stream_protocol/type.html +doc/html/boost_asio/reference/mutable_buffer/buffer_cast.html +doc/html/boost_asio/reference/mutable_buffer/buffer_size.html +doc/html/boost_asio/reference/mutable_buffer.html +doc/html/boost_asio/reference/mutable_buffer/mutable_buffer.html +doc/html/boost_asio/reference/mutable_buffer/operator_plus_.html +doc/html/boost_asio/reference/mutable_buffers_1/begin.html +doc/html/boost_asio/reference/mutable_buffers_1/buffer_cast.html +doc/html/boost_asio/reference/mutable_buffers_1/buffer_size.html +doc/html/boost_asio/reference/mutable_buffers_1/const_iterator.html +doc/html/boost_asio/reference/mutable_buffers_1/end.html +doc/html/boost_asio/reference/mutable_buffers_1.html +doc/html/boost_asio/reference/mutable_buffers_1/mutable_buffers_1.html +doc/html/boost_asio/reference/mutable_buffers_1/operator_plus_.html +doc/html/boost_asio/reference/mutable_buffers_1/value_type.html +doc/html/boost_asio/reference/MutableBufferSequence.html +doc/html/boost_asio/reference/null_buffers/begin.html +doc/html/boost_asio/reference/null_buffers/const_iterator.html +doc/html/boost_asio/reference/null_buffers/end.html +doc/html/boost_asio/reference/null_buffers.html +doc/html/boost_asio/reference/null_buffers/value_type.html +doc/html/boost_asio/reference/placeholders__bytes_transferred.html +doc/html/boost_asio/reference/placeholders__error.html +doc/html/boost_asio/reference/placeholders__iterator.html +doc/html/boost_asio/reference/posix__basic_descriptor/assign.html +doc/html/boost_asio/reference/posix__basic_descriptor/_basic_descriptor.html +doc/html/boost_asio/reference/posix__basic_descriptor/basic_descriptor.html +doc/html/boost_asio/reference/posix__basic_descriptor/bytes_readable.html +doc/html/boost_asio/reference/posix__basic_descriptor/cancel.html +doc/html/boost_asio/reference/posix__basic_descriptor/close.html +doc/html/boost_asio/reference/posix__basic_descriptor/get_io_service.html +doc/html/boost_asio/reference/posix__basic_descriptor.html +doc/html/boost_asio/reference/posix__basic_descriptor/implementation.html +doc/html/boost_asio/reference/posix__basic_descriptor/implementation_type.html +doc/html/boost_asio/reference/posix__basic_descriptor/io_control.html +doc/html/boost_asio/reference/posix__basic_descriptor/io_service.html +doc/html/boost_asio/reference/posix__basic_descriptor/is_open.html +doc/html/boost_asio/reference/posix__basic_descriptor/lowest_layer.html +doc/html/boost_asio/reference/posix__basic_descriptor/lowest_layer_type.html +doc/html/boost_asio/reference/posix__basic_descriptor/native.html +doc/html/boost_asio/reference/posix__basic_descriptor/native_type.html +doc/html/boost_asio/reference/posix__basic_descriptor/non_blocking_io.html +doc/html/boost_asio/reference/posix__basic_descriptor/service.html +doc/html/boost_asio/reference/posix__basic_descriptor/service_type.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/assign.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/async_read_some.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/async_write_some.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/basic_stream_descriptor.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/bytes_readable.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/cancel.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/close.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/get_io_service.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/implementation.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/implementation_type.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/io_control.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/io_service.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/is_open.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/lowest_layer.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/lowest_layer_type.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/native.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/native_type.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/non_blocking_io.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/read_some.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/service.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/service_type.html +doc/html/boost_asio/reference/posix__basic_stream_descriptor/write_some.html +doc/html/boost_asio/reference/posix__descriptor_base/bytes_readable.html +doc/html/boost_asio/reference/posix__descriptor_base/_descriptor_base.html +doc/html/boost_asio/reference/posix__descriptor_base.html +doc/html/boost_asio/reference/posix__descriptor_base/non_blocking_io.html +doc/html/boost_asio/reference/posix__stream_descriptor.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/assign.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/async_read_some.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/async_write_some.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/cancel.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/close.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/construct.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/destroy.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/get_io_service.html +doc/html/boost_asio/reference/posix__stream_descriptor_service.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/id.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/implementation_type.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/io_control.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/io_service.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/is_open.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/native.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/native_type.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/read_some.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/shutdown_service.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/stream_descriptor_service.html +doc/html/boost_asio/reference/posix__stream_descriptor_service/write_some.html +doc/html/boost_asio/reference/Protocol.html +doc/html/boost_asio/reference/RandomAccessHandleService.html +doc/html/boost_asio/reference/raw_socket_service/assign.html +doc/html/boost_asio/reference/raw_socket_service/async_connect.html +doc/html/boost_asio/reference/raw_socket_service/async_receive_from.html +doc/html/boost_asio/reference/raw_socket_service/async_receive.html +doc/html/boost_asio/reference/raw_socket_service/async_send.html +doc/html/boost_asio/reference/raw_socket_service/async_send_to.html +doc/html/boost_asio/reference/raw_socket_service/at_mark.html +doc/html/boost_asio/reference/raw_socket_service/available.html +doc/html/boost_asio/reference/raw_socket_service/bind.html +doc/html/boost_asio/reference/raw_socket_service/cancel.html +doc/html/boost_asio/reference/raw_socket_service/close.html +doc/html/boost_asio/reference/raw_socket_service/connect.html +doc/html/boost_asio/reference/raw_socket_service/construct.html +doc/html/boost_asio/reference/raw_socket_service/destroy.html +doc/html/boost_asio/reference/raw_socket_service/endpoint_type.html +doc/html/boost_asio/reference/raw_socket_service/get_io_service.html +doc/html/boost_asio/reference/raw_socket_service/get_option.html +doc/html/boost_asio/reference/raw_socket_service.html +doc/html/boost_asio/reference/RawSocketService.html +doc/html/boost_asio/reference/raw_socket_service/id.html +doc/html/boost_asio/reference/raw_socket_service/implementation_type.html +doc/html/boost_asio/reference/raw_socket_service/io_control.html +doc/html/boost_asio/reference/raw_socket_service/io_service.html +doc/html/boost_asio/reference/raw_socket_service/is_open.html +doc/html/boost_asio/reference/raw_socket_service/local_endpoint.html +doc/html/boost_asio/reference/raw_socket_service/native.html +doc/html/boost_asio/reference/raw_socket_service/native_type.html +doc/html/boost_asio/reference/raw_socket_service/open.html +doc/html/boost_asio/reference/raw_socket_service/protocol_type.html +doc/html/boost_asio/reference/raw_socket_service/raw_socket_service.html +doc/html/boost_asio/reference/raw_socket_service/receive_from.html +doc/html/boost_asio/reference/raw_socket_service/receive.html +doc/html/boost_asio/reference/raw_socket_service/remote_endpoint.html +doc/html/boost_asio/reference/raw_socket_service/send.html +doc/html/boost_asio/reference/raw_socket_service/send_to.html +doc/html/boost_asio/reference/raw_socket_service/set_option.html +doc/html/boost_asio/reference/raw_socket_service/shutdown.html +doc/html/boost_asio/reference/raw_socket_service/shutdown_service.html +doc/html/boost_asio/reference/read_at.html +doc/html/boost_asio/reference/ReadHandler.html +doc/html/boost_asio/reference/read.html +doc/html/boost_asio/reference/read_until.html +doc/html/boost_asio/reference/ResolveHandler.html +doc/html/boost_asio/reference/ResolverService.html +doc/html/boost_asio/reference/serial_port_base__baud_rate/baud_rate.html +doc/html/boost_asio/reference/serial_port_base__baud_rate.html +doc/html/boost_asio/reference/serial_port_base__baud_rate/load.html +doc/html/boost_asio/reference/serial_port_base__baud_rate/store.html +doc/html/boost_asio/reference/serial_port_base__baud_rate/value.html +doc/html/boost_asio/reference/serial_port_base__character_size/character_size.html +doc/html/boost_asio/reference/serial_port_base__character_size.html +doc/html/boost_asio/reference/serial_port_base__character_size/load.html +doc/html/boost_asio/reference/serial_port_base__character_size/store.html +doc/html/boost_asio/reference/serial_port_base__character_size/value.html +doc/html/boost_asio/reference/serial_port_base__flow_control/flow_control.html +doc/html/boost_asio/reference/serial_port_base__flow_control.html +doc/html/boost_asio/reference/serial_port_base__flow_control/load.html +doc/html/boost_asio/reference/serial_port_base__flow_control/store.html +doc/html/boost_asio/reference/serial_port_base__flow_control/type.html +doc/html/boost_asio/reference/serial_port_base__flow_control/value.html +doc/html/boost_asio/reference/serial_port_base.html +doc/html/boost_asio/reference/serial_port_base__parity.html +doc/html/boost_asio/reference/serial_port_base__parity/load.html +doc/html/boost_asio/reference/serial_port_base__parity/parity.html +doc/html/boost_asio/reference/serial_port_base__parity/store.html +doc/html/boost_asio/reference/serial_port_base__parity/type.html +doc/html/boost_asio/reference/serial_port_base__parity/value.html +doc/html/boost_asio/reference/serial_port_base/_serial_port_base.html +doc/html/boost_asio/reference/serial_port_base__stop_bits.html +doc/html/boost_asio/reference/serial_port_base__stop_bits/load.html +doc/html/boost_asio/reference/serial_port_base__stop_bits/stop_bits.html +doc/html/boost_asio/reference/serial_port_base__stop_bits/store.html +doc/html/boost_asio/reference/serial_port_base__stop_bits/type.html +doc/html/boost_asio/reference/serial_port_base__stop_bits/value.html +doc/html/boost_asio/reference/serial_port.html +doc/html/boost_asio/reference/serial_port_service/assign.html +doc/html/boost_asio/reference/serial_port_service/async_read_some.html +doc/html/boost_asio/reference/serial_port_service/async_write_some.html +doc/html/boost_asio/reference/serial_port_service/cancel.html +doc/html/boost_asio/reference/serial_port_service/close.html +doc/html/boost_asio/reference/serial_port_service/construct.html +doc/html/boost_asio/reference/serial_port_service/destroy.html +doc/html/boost_asio/reference/serial_port_service/get_io_service.html +doc/html/boost_asio/reference/serial_port_service/get_option.html +doc/html/boost_asio/reference/serial_port_service.html +doc/html/boost_asio/reference/SerialPortService.html +doc/html/boost_asio/reference/serial_port_service/id.html +doc/html/boost_asio/reference/serial_port_service/implementation_type.html +doc/html/boost_asio/reference/serial_port_service/io_service.html +doc/html/boost_asio/reference/serial_port_service/is_open.html +doc/html/boost_asio/reference/serial_port_service/native.html +doc/html/boost_asio/reference/serial_port_service/native_type.html +doc/html/boost_asio/reference/serial_port_service/open.html +doc/html/boost_asio/reference/serial_port_service/read_some.html +doc/html/boost_asio/reference/serial_port_service/send_break.html +doc/html/boost_asio/reference/serial_port_service/serial_port_service.html +doc/html/boost_asio/reference/serial_port_service/set_option.html +doc/html/boost_asio/reference/serial_port_service/shutdown_service.html +doc/html/boost_asio/reference/serial_port_service/write_some.html +doc/html/boost_asio/reference/service_already_exists.html +doc/html/boost_asio/reference/service_already_exists/service_already_exists.html +doc/html/boost_asio/reference/Service.html +doc/html/boost_asio/reference/SettableSerialPortOption.html +doc/html/boost_asio/reference/SettableSocketOption.html +doc/html/boost_asio/reference/socket_acceptor_service/accept.html +doc/html/boost_asio/reference/socket_acceptor_service/assign.html +doc/html/boost_asio/reference/socket_acceptor_service/async_accept.html +doc/html/boost_asio/reference/socket_acceptor_service/bind.html +doc/html/boost_asio/reference/socket_acceptor_service/cancel.html +doc/html/boost_asio/reference/socket_acceptor_service/close.html +doc/html/boost_asio/reference/socket_acceptor_service/construct.html +doc/html/boost_asio/reference/socket_acceptor_service/destroy.html +doc/html/boost_asio/reference/socket_acceptor_service/endpoint_type.html +doc/html/boost_asio/reference/socket_acceptor_service/get_io_service.html +doc/html/boost_asio/reference/socket_acceptor_service/get_option.html +doc/html/boost_asio/reference/socket_acceptor_service.html +doc/html/boost_asio/reference/SocketAcceptorService.html +doc/html/boost_asio/reference/socket_acceptor_service/id.html +doc/html/boost_asio/reference/socket_acceptor_service/implementation_type.html +doc/html/boost_asio/reference/socket_acceptor_service/io_control.html +doc/html/boost_asio/reference/socket_acceptor_service/io_service.html +doc/html/boost_asio/reference/socket_acceptor_service/is_open.html +doc/html/boost_asio/reference/socket_acceptor_service/listen.html +doc/html/boost_asio/reference/socket_acceptor_service/local_endpoint.html +doc/html/boost_asio/reference/socket_acceptor_service/native.html +doc/html/boost_asio/reference/socket_acceptor_service/native_type.html +doc/html/boost_asio/reference/socket_acceptor_service/open.html +doc/html/boost_asio/reference/socket_acceptor_service/protocol_type.html +doc/html/boost_asio/reference/socket_acceptor_service/set_option.html +doc/html/boost_asio/reference/socket_acceptor_service/shutdown_service.html +doc/html/boost_asio/reference/socket_acceptor_service/socket_acceptor_service.html +doc/html/boost_asio/reference/socket_base/broadcast.html +doc/html/boost_asio/reference/socket_base/bytes_readable.html +doc/html/boost_asio/reference/socket_base/debug.html +doc/html/boost_asio/reference/socket_base/do_not_route.html +doc/html/boost_asio/reference/socket_base/enable_connection_aborted.html +doc/html/boost_asio/reference/socket_base.html +doc/html/boost_asio/reference/socket_base/keep_alive.html +doc/html/boost_asio/reference/socket_base/linger.html +doc/html/boost_asio/reference/socket_base/max_connections.html +doc/html/boost_asio/reference/socket_base/message_do_not_route.html +doc/html/boost_asio/reference/socket_base/message_flags.html +doc/html/boost_asio/reference/socket_base/message_out_of_band.html +doc/html/boost_asio/reference/socket_base/message_peek.html +doc/html/boost_asio/reference/socket_base/non_blocking_io.html +doc/html/boost_asio/reference/socket_base/receive_buffer_size.html +doc/html/boost_asio/reference/socket_base/receive_low_watermark.html +doc/html/boost_asio/reference/socket_base/reuse_address.html +doc/html/boost_asio/reference/socket_base/send_buffer_size.html +doc/html/boost_asio/reference/socket_base/send_low_watermark.html +doc/html/boost_asio/reference/socket_base/shutdown_type.html +doc/html/boost_asio/reference/socket_base/_socket_base.html +doc/html/boost_asio/reference/SocketService.html +doc/html/boost_asio/reference/ssl__basic_context/add_verify_path.html +doc/html/boost_asio/reference/ssl__basic_context/_basic_context.html +doc/html/boost_asio/reference/ssl__basic_context/basic_context.html +doc/html/boost_asio/reference/ssl__basic_context/default_workarounds.html +doc/html/boost_asio/reference/ssl__basic_context/file_format.html +doc/html/boost_asio/reference/ssl__basic_context.html +doc/html/boost_asio/reference/ssl__basic_context/impl.html +doc/html/boost_asio/reference/ssl__basic_context/impl_type.html +doc/html/boost_asio/reference/ssl__basic_context/load_verify_file.html +doc/html/boost_asio/reference/ssl__basic_context/method.html +doc/html/boost_asio/reference/ssl__basic_context/no_sslv2.html +doc/html/boost_asio/reference/ssl__basic_context/no_sslv3.html +doc/html/boost_asio/reference/ssl__basic_context/no_tlsv1.html +doc/html/boost_asio/reference/ssl__basic_context/options.html +doc/html/boost_asio/reference/ssl__basic_context/password_purpose.html +doc/html/boost_asio/reference/ssl__basic_context/service_type.html +doc/html/boost_asio/reference/ssl__basic_context/set_options.html +doc/html/boost_asio/reference/ssl__basic_context/set_password_callback.html +doc/html/boost_asio/reference/ssl__basic_context/set_verify_mode.html +doc/html/boost_asio/reference/ssl__basic_context/single_dh_use.html +doc/html/boost_asio/reference/ssl__basic_context/use_certificate_chain_file.html +doc/html/boost_asio/reference/ssl__basic_context/use_certificate_file.html +doc/html/boost_asio/reference/ssl__basic_context/use_private_key_file.html +doc/html/boost_asio/reference/ssl__basic_context/use_rsa_private_key_file.html +doc/html/boost_asio/reference/ssl__basic_context/use_tmp_dh_file.html +doc/html/boost_asio/reference/ssl__basic_context/verify_client_once.html +doc/html/boost_asio/reference/ssl__basic_context/verify_fail_if_no_peer_cert.html +doc/html/boost_asio/reference/ssl__basic_context/verify_mode.html +doc/html/boost_asio/reference/ssl__basic_context/verify_none.html +doc/html/boost_asio/reference/ssl__basic_context/verify_peer.html +doc/html/boost_asio/reference/ssl__context_base/_context_base.html +doc/html/boost_asio/reference/ssl__context_base/default_workarounds.html +doc/html/boost_asio/reference/ssl__context_base/file_format.html +doc/html/boost_asio/reference/ssl__context_base.html +doc/html/boost_asio/reference/ssl__context_base/method.html +doc/html/boost_asio/reference/ssl__context_base/no_sslv2.html +doc/html/boost_asio/reference/ssl__context_base/no_sslv3.html +doc/html/boost_asio/reference/ssl__context_base/no_tlsv1.html +doc/html/boost_asio/reference/ssl__context_base/options.html +doc/html/boost_asio/reference/ssl__context_base/password_purpose.html +doc/html/boost_asio/reference/ssl__context_base/single_dh_use.html +doc/html/boost_asio/reference/ssl__context_base/verify_client_once.html +doc/html/boost_asio/reference/ssl__context_base/verify_fail_if_no_peer_cert.html +doc/html/boost_asio/reference/ssl__context_base/verify_mode.html +doc/html/boost_asio/reference/ssl__context_base/verify_none.html +doc/html/boost_asio/reference/ssl__context_base/verify_peer.html +doc/html/boost_asio/reference/ssl__context.html +doc/html/boost_asio/reference/ssl__context_service/add_verify_path.html +doc/html/boost_asio/reference/ssl__context_service/context_service.html +doc/html/boost_asio/reference/ssl__context_service/create.html +doc/html/boost_asio/reference/ssl__context_service/destroy.html +doc/html/boost_asio/reference/ssl__context_service/get_io_service.html +doc/html/boost_asio/reference/ssl__context_service.html +doc/html/boost_asio/reference/ssl__context_service/id.html +doc/html/boost_asio/reference/ssl__context_service/impl_type.html +doc/html/boost_asio/reference/ssl__context_service/io_service.html +doc/html/boost_asio/reference/ssl__context_service/load_verify_file.html +doc/html/boost_asio/reference/ssl__context_service/null.html +doc/html/boost_asio/reference/ssl__context_service/set_options.html +doc/html/boost_asio/reference/ssl__context_service/set_password_callback.html +doc/html/boost_asio/reference/ssl__context_service/set_verify_mode.html +doc/html/boost_asio/reference/ssl__context_service/shutdown_service.html +doc/html/boost_asio/reference/ssl__context_service/use_certificate_chain_file.html +doc/html/boost_asio/reference/ssl__context_service/use_certificate_file.html +doc/html/boost_asio/reference/ssl__context_service/use_private_key_file.html +doc/html/boost_asio/reference/ssl__context_service/use_rsa_private_key_file.html +doc/html/boost_asio/reference/ssl__context_service/use_tmp_dh_file.html +doc/html/boost_asio/reference/ssl__stream/async_handshake.html +doc/html/boost_asio/reference/ssl__stream/async_read_some.html +doc/html/boost_asio/reference/ssl__stream/async_shutdown.html +doc/html/boost_asio/reference/ssl__stream/async_write_some.html +doc/html/boost_asio/reference/ssl__stream_base/handshake_type.html +doc/html/boost_asio/reference/ssl__stream_base.html +doc/html/boost_asio/reference/ssl__stream_base/_stream_base.html +doc/html/boost_asio/reference/ssl__stream/get_io_service.html +doc/html/boost_asio/reference/ssl__stream/handshake.html +doc/html/boost_asio/reference/ssl__stream/handshake_type.html +doc/html/boost_asio/reference/ssl__stream.html +doc/html/boost_asio/reference/ssl__stream/impl.html +doc/html/boost_asio/reference/ssl__stream/impl_type.html +doc/html/boost_asio/reference/ssl__stream/in_avail.html +doc/html/boost_asio/reference/ssl__stream/io_service.html +doc/html/boost_asio/reference/ssl__stream/lowest_layer.html +doc/html/boost_asio/reference/ssl__stream/lowest_layer_type.html +doc/html/boost_asio/reference/ssl__stream/next_layer.html +doc/html/boost_asio/reference/ssl__stream/next_layer_type.html +doc/html/boost_asio/reference/ssl__stream/peek.html +doc/html/boost_asio/reference/ssl__stream/read_some.html +doc/html/boost_asio/reference/ssl__stream_service/async_handshake.html +doc/html/boost_asio/reference/ssl__stream_service/async_read_some.html +doc/html/boost_asio/reference/ssl__stream_service/async_shutdown.html +doc/html/boost_asio/reference/ssl__stream_service/async_write_some.html +doc/html/boost_asio/reference/ssl__stream_service/create.html +doc/html/boost_asio/reference/ssl__stream_service/destroy.html +doc/html/boost_asio/reference/ssl__stream_service/get_io_service.html +doc/html/boost_asio/reference/ssl__stream_service/handshake.html +doc/html/boost_asio/reference/ssl__stream_service.html +doc/html/boost_asio/reference/ssl__stream_service/id.html +doc/html/boost_asio/reference/ssl__stream_service/impl_type.html +doc/html/boost_asio/reference/ssl__stream_service/in_avail.html +doc/html/boost_asio/reference/ssl__stream_service/io_service.html +doc/html/boost_asio/reference/ssl__stream_service/null.html +doc/html/boost_asio/reference/ssl__stream_service/peek.html +doc/html/boost_asio/reference/ssl__stream_service/read_some.html +doc/html/boost_asio/reference/ssl__stream_service/shutdown.html +doc/html/boost_asio/reference/ssl__stream_service/shutdown_service.html +doc/html/boost_asio/reference/ssl__stream_service/stream_service.html +doc/html/boost_asio/reference/ssl__stream/service_type.html +doc/html/boost_asio/reference/ssl__stream_service/write_some.html +doc/html/boost_asio/reference/ssl__stream/shutdown.html +doc/html/boost_asio/reference/ssl__stream/_stream.html +doc/html/boost_asio/reference/ssl__stream/stream.html +doc/html/boost_asio/reference/ssl__stream/write_some.html +doc/html/boost_asio/reference/strand.html +doc/html/boost_asio/reference/streambuf.html +doc/html/boost_asio/reference/StreamDescriptorService.html +doc/html/boost_asio/reference/StreamHandleService.html +doc/html/boost_asio/reference/stream_socket_service/assign.html +doc/html/boost_asio/reference/stream_socket_service/async_connect.html +doc/html/boost_asio/reference/stream_socket_service/async_receive.html +doc/html/boost_asio/reference/stream_socket_service/async_send.html +doc/html/boost_asio/reference/stream_socket_service/at_mark.html +doc/html/boost_asio/reference/stream_socket_service/available.html +doc/html/boost_asio/reference/stream_socket_service/bind.html +doc/html/boost_asio/reference/stream_socket_service/cancel.html +doc/html/boost_asio/reference/stream_socket_service/close.html +doc/html/boost_asio/reference/stream_socket_service/connect.html +doc/html/boost_asio/reference/stream_socket_service/construct.html +doc/html/boost_asio/reference/stream_socket_service/destroy.html +doc/html/boost_asio/reference/stream_socket_service/endpoint_type.html +doc/html/boost_asio/reference/stream_socket_service/get_io_service.html +doc/html/boost_asio/reference/stream_socket_service/get_option.html +doc/html/boost_asio/reference/stream_socket_service.html +doc/html/boost_asio/reference/StreamSocketService.html +doc/html/boost_asio/reference/stream_socket_service/id.html +doc/html/boost_asio/reference/stream_socket_service/implementation_type.html +doc/html/boost_asio/reference/stream_socket_service/io_control.html +doc/html/boost_asio/reference/stream_socket_service/io_service.html +doc/html/boost_asio/reference/stream_socket_service/is_open.html +doc/html/boost_asio/reference/stream_socket_service/local_endpoint.html +doc/html/boost_asio/reference/stream_socket_service/native.html +doc/html/boost_asio/reference/stream_socket_service/native_type.html +doc/html/boost_asio/reference/stream_socket_service/open.html +doc/html/boost_asio/reference/stream_socket_service/protocol_type.html +doc/html/boost_asio/reference/stream_socket_service/receive.html +doc/html/boost_asio/reference/stream_socket_service/remote_endpoint.html +doc/html/boost_asio/reference/stream_socket_service/send.html +doc/html/boost_asio/reference/stream_socket_service/set_option.html +doc/html/boost_asio/reference/stream_socket_service/shutdown.html +doc/html/boost_asio/reference/stream_socket_service/shutdown_service.html +doc/html/boost_asio/reference/stream_socket_service/stream_socket_service.html +doc/html/boost_asio/reference/SyncRandomAccessReadDevice.html +doc/html/boost_asio/reference/SyncRandomAccessWriteDevice.html +doc/html/boost_asio/reference/SyncReadStream.html +doc/html/boost_asio/reference/SyncWriteStream.html +doc/html/boost_asio/reference/TimerService.html +doc/html/boost_asio/reference/TimeTraits.html +doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/add.html +doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/duration_type.html +doc/html/boost_asio/reference/time_traits_lt__ptime__gt_.html +doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/less_than.html +doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/now.html +doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/subtract.html +doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/time_type.html +doc/html/boost_asio/reference/time_traits_lt__ptime__gt_/to_posix_duration.html +doc/html/boost_asio/reference/transfer_all.html +doc/html/boost_asio/reference/transfer_at_least.html +doc/html/boost_asio/reference/use_service.html +doc/html/boost_asio/reference/WaitHandler.html +doc/html/boost_asio/reference/windows__basic_handle/assign.html +doc/html/boost_asio/reference/windows__basic_handle/_basic_handle.html +doc/html/boost_asio/reference/windows__basic_handle/basic_handle.html +doc/html/boost_asio/reference/windows__basic_handle/cancel.html +doc/html/boost_asio/reference/windows__basic_handle/close.html +doc/html/boost_asio/reference/windows__basic_handle/get_io_service.html +doc/html/boost_asio/reference/windows__basic_handle.html +doc/html/boost_asio/reference/windows__basic_handle/implementation.html +doc/html/boost_asio/reference/windows__basic_handle/implementation_type.html +doc/html/boost_asio/reference/windows__basic_handle/io_service.html +doc/html/boost_asio/reference/windows__basic_handle/is_open.html +doc/html/boost_asio/reference/windows__basic_handle/lowest_layer.html +doc/html/boost_asio/reference/windows__basic_handle/lowest_layer_type.html +doc/html/boost_asio/reference/windows__basic_handle/native.html +doc/html/boost_asio/reference/windows__basic_handle/native_type.html +doc/html/boost_asio/reference/windows__basic_handle/service.html +doc/html/boost_asio/reference/windows__basic_handle/service_type.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/assign.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/async_read_some_at.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/async_write_some_at.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/basic_random_access_handle.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/cancel.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/close.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/get_io_service.html +doc/html/boost_asio/reference/windows__basic_random_access_handle.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/implementation.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/implementation_type.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/io_service.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/is_open.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/lowest_layer.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/lowest_layer_type.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/native.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/native_type.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/read_some_at.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/service.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/service_type.html +doc/html/boost_asio/reference/windows__basic_random_access_handle/write_some_at.html +doc/html/boost_asio/reference/windows__basic_stream_handle/assign.html +doc/html/boost_asio/reference/windows__basic_stream_handle/async_read_some.html +doc/html/boost_asio/reference/windows__basic_stream_handle/async_write_some.html +doc/html/boost_asio/reference/windows__basic_stream_handle/basic_stream_handle.html +doc/html/boost_asio/reference/windows__basic_stream_handle/cancel.html +doc/html/boost_asio/reference/windows__basic_stream_handle/close.html +doc/html/boost_asio/reference/windows__basic_stream_handle/get_io_service.html +doc/html/boost_asio/reference/windows__basic_stream_handle.html +doc/html/boost_asio/reference/windows__basic_stream_handle/implementation.html +doc/html/boost_asio/reference/windows__basic_stream_handle/implementation_type.html +doc/html/boost_asio/reference/windows__basic_stream_handle/io_service.html +doc/html/boost_asio/reference/windows__basic_stream_handle/is_open.html +doc/html/boost_asio/reference/windows__basic_stream_handle/lowest_layer.html +doc/html/boost_asio/reference/windows__basic_stream_handle/lowest_layer_type.html +doc/html/boost_asio/reference/windows__basic_stream_handle/native.html +doc/html/boost_asio/reference/windows__basic_stream_handle/native_type.html +doc/html/boost_asio/reference/windows__basic_stream_handle/read_some.html +doc/html/boost_asio/reference/windows__basic_stream_handle/service.html +doc/html/boost_asio/reference/windows__basic_stream_handle/service_type.html +doc/html/boost_asio/reference/windows__basic_stream_handle/write_some.html +doc/html/boost_asio/reference/windows__overlapped_ptr/complete.html +doc/html/boost_asio/reference/windows__overlapped_ptr/get.html +doc/html/boost_asio/reference/windows__overlapped_ptr.html +doc/html/boost_asio/reference/windows__overlapped_ptr/_overlapped_ptr.html +doc/html/boost_asio/reference/windows__overlapped_ptr/overlapped_ptr.html +doc/html/boost_asio/reference/windows__overlapped_ptr/release.html +doc/html/boost_asio/reference/windows__overlapped_ptr/reset.html +doc/html/boost_asio/reference/windows__random_access_handle.html +doc/html/boost_asio/reference/windows__random_access_handle_service/assign.html +doc/html/boost_asio/reference/windows__random_access_handle_service/async_read_some_at.html +doc/html/boost_asio/reference/windows__random_access_handle_service/async_write_some_at.html +doc/html/boost_asio/reference/windows__random_access_handle_service/cancel.html +doc/html/boost_asio/reference/windows__random_access_handle_service/close.html +doc/html/boost_asio/reference/windows__random_access_handle_service/construct.html +doc/html/boost_asio/reference/windows__random_access_handle_service/destroy.html +doc/html/boost_asio/reference/windows__random_access_handle_service/get_io_service.html +doc/html/boost_asio/reference/windows__random_access_handle_service.html +doc/html/boost_asio/reference/windows__random_access_handle_service/id.html +doc/html/boost_asio/reference/windows__random_access_handle_service/implementation_type.html +doc/html/boost_asio/reference/windows__random_access_handle_service/io_service.html +doc/html/boost_asio/reference/windows__random_access_handle_service/is_open.html +doc/html/boost_asio/reference/windows__random_access_handle_service/native.html +doc/html/boost_asio/reference/windows__random_access_handle_service/native_type.html +doc/html/boost_asio/reference/windows__random_access_handle_service/random_access_handle_service.html +doc/html/boost_asio/reference/windows__random_access_handle_service/read_some_at.html +doc/html/boost_asio/reference/windows__random_access_handle_service/shutdown_service.html +doc/html/boost_asio/reference/windows__random_access_handle_service/write_some_at.html +doc/html/boost_asio/reference/windows__stream_handle.html +doc/html/boost_asio/reference/windows__stream_handle_service/assign.html +doc/html/boost_asio/reference/windows__stream_handle_service/async_read_some.html +doc/html/boost_asio/reference/windows__stream_handle_service/async_write_some.html +doc/html/boost_asio/reference/windows__stream_handle_service/cancel.html +doc/html/boost_asio/reference/windows__stream_handle_service/close.html +doc/html/boost_asio/reference/windows__stream_handle_service/construct.html +doc/html/boost_asio/reference/windows__stream_handle_service/destroy.html +doc/html/boost_asio/reference/windows__stream_handle_service/get_io_service.html +doc/html/boost_asio/reference/windows__stream_handle_service.html +doc/html/boost_asio/reference/windows__stream_handle_service/id.html +doc/html/boost_asio/reference/windows__stream_handle_service/implementation_type.html +doc/html/boost_asio/reference/windows__stream_handle_service/io_service.html +doc/html/boost_asio/reference/windows__stream_handle_service/is_open.html +doc/html/boost_asio/reference/windows__stream_handle_service/native.html +doc/html/boost_asio/reference/windows__stream_handle_service/native_type.html +doc/html/boost_asio/reference/windows__stream_handle_service/read_some.html +doc/html/boost_asio/reference/windows__stream_handle_service/shutdown_service.html +doc/html/boost_asio/reference/windows__stream_handle_service/stream_handle_service.html +doc/html/boost_asio/reference/windows__stream_handle_service/write_some.html +doc/html/boost_asio/reference/write_at.html +doc/html/boost_asio/reference/WriteHandler.html +doc/html/boost_asio/reference/write.html +doc/html/boost_asio/tutorial.html +doc/html/boost_asio/tutorial/tutdaytime1.html +doc/html/boost_asio/tutorial/tutdaytime2.html +doc/html/boost_asio/tutorial/tutdaytime3.html +doc/html/boost_asio/tutorial/tutdaytime4.html +doc/html/boost_asio/tutorial/tutdaytime5.html +doc/html/boost_asio/tutorial/tutdaytime6.html +doc/html/boost_asio/tutorial/tutdaytime7.html +doc/html/boost_asio/tutorial/tutdaytime7/src.html +doc/html/boost_asio/tutorial/tuttimer1.html +doc/html/boost_asio/tutorial/tuttimer2.html +doc/html/boost_asio/tutorial/tuttimer3.html +doc/html/boost_asio/tutorial/tuttimer4.html +doc/html/boost_asio/tutorial/tuttimer5.html +doc/html/boost_asio/using.html +doc/html/boost/bad_any_cast.html +doc/html/boost/bad_function_call.html +doc/html/boost/bad_get.html +doc/html/boost/bad_visit.html +doc/html/boostbook.css +doc/html/boostbook/documenting.html +doc/html/boostbook/dtd/access.html +doc/html/boostbook/dtd/boostbook.html +doc/html/boostbook/dtd/class.html +doc/html/boostbook/dtd/class-specialization.html +doc/html/boostbook/dtd/code.html +doc/html/boostbook/dtd/compile-fail-test.html +doc/html/boostbook/dtd/compile-test.html +doc/html/boostbook/dtd/complexity.html +doc/html/boostbook/dtd/constructor.html +doc/html/boostbook/dtd/copy-assignment.html +doc/html/boostbook/dtd/data-member.html +doc/html/boostbook/dtd/default.html +doc/html/boostbook/dtd/description.html +doc/html/boostbook/dtd/destructor.html +doc/html/boostbook/dtd/effects.html +doc/html/boostbook/dtd/enum.html +doc/html/boostbook/dtd/enumname.html +doc/html/boostbook/dtd/enumvalue.html +doc/html/boostbook/dtd/free-function-group.html +doc/html/boostbook/dtd/function.html +doc/html/boostbook/dtd/functionname.html +doc/html/boostbook/dtd/globalname.html +doc/html/boostbook/dtd/header.html +doc/html/boostbook/dtd/headername.html +doc/html/boostbook/dtd/if-fails.html +doc/html/boostbook/dtd/inherit.html +doc/html/boostbook/dtd/lib.html +doc/html/boostbook/dtd/librarycategorydef.html +doc/html/boostbook/dtd/librarycategory.html +doc/html/boostbook/dtd/librarycategorylist.html +doc/html/boostbook/dtd/library.html +doc/html/boostbook/dtd/libraryinfo.html +doc/html/boostbook/dtd/librarylist.html +doc/html/boostbook/dtd/libraryname.html +doc/html/boostbook/dtd/librarypurpose.html +doc/html/boostbook/dtd/library-reference.html +doc/html/boostbook/dtd/link-fail-test.html +doc/html/boostbook/dtd/link-test.html +doc/html/boostbook/dtd/macroname.html +doc/html/boostbook/dtd/method-group.html +doc/html/boostbook/dtd/method.html +doc/html/boostbook/dtd/namespace.html +doc/html/boostbook/dtd/notes.html +doc/html/boostbook/dtd/overloaded-function.html +doc/html/boostbook/dtd/overloaded-method.html +doc/html/boostbook/dtd/parameter.html +doc/html/boostbook/dtd/paramtype.html +doc/html/boostbook/dtd/postconditions.html +doc/html/boostbook/dtd/precondition.html +doc/html/boostbook/dtd/programlisting.html +doc/html/boostbook/dtd/purpose.html +doc/html/boostbook/dtd/rationale.html +doc/html/boostbook/dtd/requirement.html +doc/html/boostbook/dtd/requires.html +doc/html/boostbook/dtd/returns.html +doc/html/boostbook/dtd/run-fail-test.html +doc/html/boostbook/dtd/run-test.html +doc/html/boostbook/dtd/signature.html +doc/html/boostbook/dtd/snippet.html +doc/html/boostbook/dtd/source.html +doc/html/boostbook/dtd/specialization.html +doc/html/boostbook/dtd/static-constant.html +doc/html/boostbook/dtd/struct.html +doc/html/boostbook/dtd/struct-specialization.html +doc/html/boostbook/dtd/template-arg.html +doc/html/boostbook/dtd/template.html +doc/html/boostbook/dtd/template-nontype-parameter.html +doc/html/boostbook/dtd/template-type-parameter.html +doc/html/boostbook/dtd/template-varargs.html +doc/html/boostbook/dtd/testsuite.html +doc/html/boostbook/dtd/throws.html +doc/html/boostbook/dtd/typedef.html +doc/html/boostbook/dtd/type.html +doc/html/boostbook/dtd/union.html +doc/html/boostbook/dtd/union-specialization.html +doc/html/boostbook/dtd/using-class.html +doc/html/boostbook/dtd/using-namespace.html +doc/html/boostbook/getting/started.html +doc/html/boostbook.html +doc/html/boostbook/together.html +doc/html/boost/CV/constrained_value.html +doc/html/boost/CV/simple_exception_policy.html +doc/html/boost/date_time/acst_dst_trait.html +doc/html/boost/date_time/all_date_names_put.html +doc/html/boost/date_time/bad_field_count.html +doc/html/boost/date_time/base_time.html +doc/html/boost/date_time/c_local_adjustor.html +doc/html/boost/date_time/convert_string_type.html +doc/html/boost/date_time/convert_to_lower.html +doc/html/boost/date_time/counted_time_rep.html +doc/html/boost/date_time/counted_time_system.html +doc/html/boost/date_time/c_time.html +doc/html/boost/date_time/data_not_accessible.html +doc/html/boost/date_time/date_duration.html +doc/html/boost/date_time/date_facet.html +doc/html/boost/date_time/date_formatter.html +doc/html/boost/date_time/date_generator_formatter.html +doc/html/boost/date_time/date_generator_parser.html +doc/html/boost/date_time/date.html +doc/html/boost/date_time/date_input_facet.html +doc/html/boost/date_time/date_itr_base.html +doc/html/boost/date_time/date_itr.html +doc/html/boost/date_time/date_names_put.html +doc/html/boost/date_time/day_calc_dst_rule.html +doc/html/boost/date_time/day_clock.html +doc/html/boost/date_time/day_functor.html +doc/html/boost/date_time/days_before_weekday.html +doc/html/boost/date_time/days_until_weekday.html +doc/html/boost/date_time/default_zone_names.html +doc/html/boost/date_time/dst_adjustment_offsets.html +doc/html/boost/date_time/dst_calc_engine.html +doc/html/boost/date_time/dst_calculator.html +doc/html/boost/date_time/dst_day_calc_rule.html +doc/html/boost/date_time/duration_traits_adapted.html +doc/html/boost/date_time/duration_traits_long.html +doc/html/boost/date_time/dynamic_local_time_adju_id393932.html +doc/html/boost/date_time/eu_dst_trait.html +doc/html/boost/date_time/find_match.html +doc/html/boost/date_time/first_kday_after.html +doc/html/boost/date_time/first_kday_before.html +doc/html/boost/date_time/first_kday_of_month.html +doc/html/boost/date_time/fixed_string_to_int_id332249.html +doc/html/boost/date_time/fixed_string_to_int_id599668.html +doc/html/boost/date_time/format_date_parser.html +doc/html/boost/date_time/from_stream_type_id316177.html +doc/html/boost/date_time/from_stream_type_id387073.html +doc/html/boost/date_time/from_stream_type_id387116.html +doc/html/boost/date_time/from_stream_type_id387159.html +doc/html/boost/date_time/gather_month_strings.html +doc/html/boost/date_time/gather_weekday_strings.html +doc/html/boost/date_time/gregorian_calendar_base.html +doc/html/boost/date_time/int_adapter.html +doc/html/boost/date_time/iso_extended_format.html +doc/html/boost/date_time/iso_format_base.html +doc/html/boost/date_time/iso_format_base_wchar_t_id579288.html +doc/html/boost/date_time/iso_format.html +doc/html/boost/date_time/last_kday_of_month.html +doc/html/boost/date_time/local_adjustor.html +doc/html/boost/date_time/microsec_clock.html +doc/html/boost/date_time/month_formatter.html +doc/html/boost/date_time/month_functor.html +doc/html/boost/date_time/months_duration.html +doc/html/boost/date_time/next_weekday.html +doc/html/boost/date_time/nth_kday_of_month.html +doc/html/boost/date_time/null_dst_rules.html +doc/html/boost/date_time/operator_id335986.html +doc/html/boost/date_time/ostream_date_formatter.html +doc/html/boost/date_time/ostream_month_formatter.html +doc/html/boost/date_time/ostream_time_duration_f_id371682.html +doc/html/boost/date_time/ostream_time_formatter.html +doc/html/boost/date_time/ostream_time_period_for_id389824.html +doc/html/boost/date_time/ostream_weekday_formatter.html +doc/html/boost/date_time/ostream_ymd_formatter.html +doc/html/boost/date_time/parse_date.html +doc/html/boost/date_time/parse_delimited_time_du_id599699.html +doc/html/boost/date_time/parse_match_result.html +doc/html/boost/date_time/partial_date.html +doc/html/boost/date_time/period_formatter.html +doc/html/boost/date_time/period.html +doc/html/boost/date_time/period_parser.html +doc/html/boost/date_time/previous_weekday.html +doc/html/boost/date_time/second_clock.html +doc/html/boost/date_time/simple_format.html +doc/html/boost/date_time/simple_format_wchar_t_id323261.html +doc/html/boost/date_time/special_values_formatter.html +doc/html/boost/date_time/special_values_parser.html +doc/html/boost/date_time/split_timedate_system.html +doc/html/boost/date_time/static_local_time_adjustor.html +doc/html/boost/date_time/str_from_delimited_time_id363275.html +doc/html/boost/date_time/string_parse_tree.html +doc/html/boost/date_time/subsecond_duration.html +doc/html/boost/date_time/time_duration.html +doc/html/boost/date_time/time_facet.html +doc/html/boost/date_time/time_formats.html +doc/html/boost/date_time/time_from_ftime.html +doc/html/boost/date_time/time_input_facet.html +doc/html/boost/date_time/time_itr.html +doc/html/boost/date_time/time_resolution_traits.html +doc/html/boost/date_time/time_resolution_traits__id348744.html +doc/html/boost/date_time/time_resolution_traits__id363681.html +doc/html/boost/date_time/time_resolution_traits__id390571.html +doc/html/boost/date_time/time_resolution_traits__id394468.html +doc/html/boost/date_time/time_zone_base.html +doc/html/boost/date_time/time_zone_names_base.html +doc/html/boost/date_time/tz_db_base.html +doc/html/boost/date_time/uk_dst_trait.html +doc/html/boost/date_time/us_dst_rules.html +doc/html/boost/date_time/us_dst_trait.html +doc/html/boost/date_time/utc_adjustment.html +doc/html/boost/date_time/var_string_to_int.html +doc/html/boost/date_time/week_functor.html +doc/html/boost/date_time/weeks_duration.html +doc/html/boost/date_time/winapi/FILETIME.html +doc/html/boost/date_time/winapi/file_time_to_microseconds.html +doc/html/boost/date_time/winapi/lpFileTime.html +doc/html/boost/date_time/winapi/lpLocalFileTime.html +doc/html/boost/date_time/winapi/SYSTEMTIME.html +doc/html/boost/date_time/wrapping_int2.html +doc/html/boost/date_time/wrapping_int.html +doc/html/boost/date_time/year_based_generator.html +doc/html/boost/date_time/year_functor.html +doc/html/boost/date_time/year_month_day_base.html +doc/html/boost/date_time/years_duration.html +doc/html/boost/date_time/ymd_formatter.html +doc/html/boost/date_time/ymd_order_spec.html +doc/html/boost/environment_iterator.html +doc/html/boost/eof_iterator.html +doc/html/boost/function_base.html +doc/html/boost/function_equal.html +doc/html/boost/function.html +doc/html/boost/functionN.html +doc/html/boost/functionN/sig.html +doc/html/boost/function/sig.html +doc/html/boost/get_id1114913.html +doc/html/boost/graph_traits_mpi_graph__id896016.html +doc/html/boost/gregorian/bad_day_of_month.html +doc/html/boost/gregorian/bad_day_of_year.html +doc/html/boost/gregorian/bad_month.html +doc/html/boost/gregorian/bad_weekday.html +doc/html/boost/gregorian/bad_year.html +doc/html/boost/gregorian/date_duration.html +doc/html/boost/gregorian/date.html +doc/html/boost/gregorian/greg_day.html +doc/html/boost/gregorian/greg_durations_config.html +doc/html/boost/gregorian/greg_facet_config.html +doc/html/boost/gregorian/greg_month.html +doc/html/boost/gregorian/gregorian_calendar.html +doc/html/boost/gregorian/greg_weekday.html +doc/html/boost/gregorian/greg_year.html +doc/html/boost/gregorian/operator_id360002.html +doc/html/boost/gregorian/operator_id373628.html +doc/html/boost/gregorian/operator_id394180.html +doc/html/boost/gregorian/operator_id600842.html +doc/html/boost/gregorian/special_value_from_string.html +doc/html/boost/gregorian/weeks_duration.html +doc/html/boost/gregorian/year_based_generator.html +doc/html/boost/hash_bool_id340492.html +doc/html/boost/hash_char_id606907.html +doc/html/boost/hash_double_id321163.html +doc/html/boost/hash_float_id604654.html +doc/html/boost/hash.html +doc/html/boost/hash_int_id319518.html +doc/html/boost/hash_long_double_id371169.html +doc/html/boost/hash_long_id607153.html +doc/html/boost/hash_long_long_id367983.html +doc/html/boost/hash_short_id592432.html +doc/html/boost/hash_signed_char_id597705.html +doc/html/boost/hash_std_string_id371225.html +doc/html/boost/hash_std_wstring_id317797.html +doc/html/boost/hash_T_id317854.html +doc/html/boost/hash_unsigned_char_id597755.html +doc/html/boost/hash_unsigned_int_id578511.html +doc/html/boost/hash_unsigned_long_id405764.html +doc/html/boost/hash_unsigned_long_long_id382392.html +doc/html/boost/hash_unsigned_short_id606629.html +doc/html/boost/hash_wchar_t_id359822.html +doc/html/boost/interprocess/accept_ownership.html +doc/html/boost/interprocess/accept_ownership_type.html +doc/html/boost/interprocess/adaptive_pool.html +doc/html/boost/interprocess/allocator.html +doc/html/boost/interprocess/anonymous_shared_memory.html +doc/html/boost/interprocess/bad_alloc.html +doc/html/boost/interprocess/barrier.html +doc/html/boost/interprocess/basic_bufferbuf.html +doc/html/boost/interprocess/basic_bufferstream.html +doc/html/boost/interprocess/basic_ibufferstream.html +doc/html/boost/interprocess/basic_ivectorstream.html +doc/html/boost/interprocess/basic_managed_external__id808264.html +doc/html/boost/interprocess/basic_managed_heap_memory.html +doc/html/boost/interprocess/basic_managed_mapped_file.html +doc/html/boost/interprocess/basic_managed_shared_me_id808870.html +doc/html/boost/interprocess/basic_managed_windows_s_id809174.html +doc/html/boost/interprocess/basic_obufferstream.html +doc/html/boost/interprocess/basic_ovectorstream.html +doc/html/boost/interprocess/basic_vectorbuf.html +doc/html/boost/interprocess/basic_vectorstream.html +doc/html/boost/interprocess/cached_adaptive_pool.html +doc/html/boost/interprocess/cached_node_allocator.html +doc/html/boost/interprocess/create_only.html +doc/html/boost/interprocess/create_only_t.html +doc/html/boost/interprocess/defer_lock.html +doc/html/boost/interprocess/defer_lock_type.html +doc/html/boost/interprocess/deleter.html +doc/html/boost/interprocess/enable_shared_from_this.html +doc/html/boost/interprocess/file_lock.html +doc/html/boost/interprocess/file_mapping.html +doc/html/boost/interprocess/flat_map_index_aux.html +doc/html/boost/interprocess/flat_map_index.html +doc/html/boost/interprocess/get_pointer_id813554.html +doc/html/boost/interprocess/get_pointer_id813877.html +doc/html/boost/interprocess/interprocess_condition.html +doc/html/boost/interprocess/interprocess_exception.html +doc/html/boost/interprocess/interprocess_mutex.html +doc/html/boost/interprocess/interprocess_recursive__id818128.html +doc/html/boost/interprocess/interprocess_semaphore.html +doc/html/boost/interprocess/interprocess_upgradable_id818363.html +doc/html/boost/interprocess/intrusive_ptr.html +doc/html/boost/interprocess/iset_index.html +doc/html/boost/interprocess/iunordered_set_index.html +doc/html/boost/interprocess/lock_exception.html +doc/html/boost/interprocess/make_managed_shared_ptr.html +doc/html/boost/interprocess/make_managed_unique_ptr.html +doc/html/boost/interprocess/make_managed_weak_ptr.html +doc/html/boost/interprocess/managed_shared_ptr.html +doc/html/boost/interprocess/managed_unique_ptr.html +doc/html/boost/interprocess/managed_weak_ptr.html +doc/html/boost/interprocess/map_index.html +doc/html/boost/interprocess/mapped_region.html +doc/html/boost/interprocess/message_queue.html +doc/html/boost/interprocess/mutex_family.html +doc/html/boost/interprocess/named_condition.html +doc/html/boost/interprocess/named_mutex.html +doc/html/boost/interprocess/named_recursive_mutex.html +doc/html/boost/interprocess/named_semaphore.html +doc/html/boost/interprocess/named_upgradable_mutex.html +doc/html/boost/interprocess/node_allocator.html +doc/html/boost/interprocess/null_index.html +doc/html/boost/interprocess/null_mutex_family.html +doc/html/boost/interprocess/null_mutex.html +doc/html/boost/interprocess/offset_ptr.html +doc/html/boost/interprocess/open_copy_on_write.html +doc/html/boost/interprocess/open_copy_on_write_t.html +doc/html/boost/interprocess/open_only.html +doc/html/boost/interprocess/open_only_t.html +doc/html/boost/interprocess/open_or_create.html +doc/html/boost/interprocess/open_or_create_t.html +doc/html/boost/interprocess/open_read_only.html +doc/html/boost/interprocess/open_read_only_t.html +doc/html/boost/interprocess/operator___id801251.html +doc/html/boost/interprocess/operator___id801313.html +doc/html/boost/interprocess/operator___id801935.html +doc/html/boost/interprocess/operator___id801975.html +doc/html/boost/interprocess/operator___id802723.html +doc/html/boost/interprocess/operator___id802785.html +doc/html/boost/interprocess/operator___id803500.html +doc/html/boost/interprocess/operator___id803548.html +doc/html/boost/interprocess/operator___id804474.html +doc/html/boost/interprocess/operator___id804520.html +doc/html/boost/interprocess/operator___id805238.html +doc/html/boost/interprocess/operator___id805301.html +doc/html/boost/interprocess/operator___id805994.html +doc/html/boost/interprocess/operator___id806057.html +doc/html/boost/interprocess/operator___id810624.html +doc/html/boost/interprocess/operator___id810664.html +doc/html/boost/interprocess/operator_id810704.html +doc/html/boost/interprocess/operator___id810744.html +doc/html/boost/interprocess/operator_id810784.html +doc/html/boost/interprocess/operator___id810824.html +doc/html/boost/interprocess/operator_id810864.html +doc/html/boost/interprocess/operator_id810903.html +doc/html/boost/interprocess/operator__id810943.html +doc/html/boost/interprocess/operator-_id810977.html +doc/html/boost/interprocess/operator___id813199.html +doc/html/boost/interprocess/operator___id813241.html +doc/html/boost/interprocess/operator___id813283.html +doc/html/boost/interprocess/operator___id813322.html +doc/html/boost/interprocess/operator___id813361.html +doc/html/boost/interprocess/operator___id813400.html +doc/html/boost/interprocess/operator_id813439.html +doc/html/boost/interprocess/private_adaptive_pool.html +doc/html/boost/interprocess/private_node_allocator.html +doc/html/boost/interprocess/rbtree_best_fit.html +doc/html/boost_interprocess_reference.html +doc/html/boost/interprocess/remove_file_on_destroy.html +doc/html/boost/interprocess/remove_shared_memory_on_id812760.html +doc/html/boost/interprocess/scoped_lock.html +doc/html/boost/interprocess/scoped_ptr.html +doc/html/boost/interprocess/segment_manager_base.html +doc/html/boost/interprocess/segment_manager.html +doc/html/boost/interprocess/sharable_lock.html +doc/html/boost/interprocess/shared_memory_object.html +doc/html/boost/interprocess/shared_ptr.html +doc/html/boost/interprocess/simple_seq_fit.html +doc/html/boost/interprocess/swap_id811016.html +doc/html/boost/interprocess/swap_id813476.html +doc/html/boost/interprocess/swap_id813839.html +doc/html/boost/interprocess/try_to_lock.html +doc/html/boost/interprocess/try_to_lock_type.html +doc/html/boost/interprocess/unique_ptr.html +doc/html/boost/interprocess/unordered_map_index.html +doc/html/boost/interprocess/upgradable_lock.html +doc/html/boost/interprocess/weak_ptr.html +doc/html/boost/interprocess/windows_shared_memory.html +doc/html/boost/intrusive/any_base_hook.html +doc/html/boost/intrusive/any_member_hook.html +doc/html/boost/intrusive/any_to_avl_set_hook.html +doc/html/boost/intrusive/any_to_bs_set_hook.html +doc/html/boost/intrusive/any_to_list_hook.html +doc/html/boost/intrusive/any_to_set_hook.html +doc/html/boost/intrusive/any_to_slist_hook.html +doc/html/boost/intrusive/any_to_unordered_set_hook.html +doc/html/boost/intrusive/avl_multiset.html +doc/html/boost/intrusive/avl_set_base_hook.html +doc/html/boost/intrusive/avl_set.html +doc/html/boost/intrusive/avl_set_member_hook.html +doc/html/boost/intrusive/avltree_algorithms.html +doc/html/boost/intrusive/avltree.html +doc/html/boost/intrusive/base_hook.html +doc/html/boost/intrusive/bs_set_base_hook.html +doc/html/boost/intrusive/bs_set_member_hook.html +doc/html/boost/intrusive/bucket_traits.html +doc/html/boost/intrusive/cache_begin.html +doc/html/boost/intrusive/cache_last.html +doc/html/boost/intrusive/circular_list_algorithms.html +doc/html/boost/intrusive/circular_slist_algorithms.html +doc/html/boost/intrusive/compare_hash.html +doc/html/boost/intrusive/compare.html +doc/html/boost/intrusive/constant_time_size.html +doc/html/boost/intrusive/derivation_value_traits.html +doc/html/boost/intrusive/equal.html +doc/html/boost/intrusive/floating_point.html +doc/html/boost/intrusive/hash.html +doc/html/boost/intrusive/hashtable.html +doc/html/boost/intrusive/incremental.html +doc/html/boost/intrusive/linear.html +doc/html/boost/intrusive/linear_slist_algorithms.html +doc/html/boost/intrusive/link_mode.html +doc/html/boost/intrusive/link_mode_type.html +doc/html/boost/intrusive/list_base_hook.html +doc/html/boost/intrusive/list.html +doc/html/boost/intrusive/list_member_hook.html +doc/html/boost/intrusive/make_any_base_hook.html +doc/html/boost/intrusive/make_any_member_hook.html +doc/html/boost/intrusive/make_avl_multiset.html +doc/html/boost/intrusive/make_avl_set_base_hook.html +doc/html/boost/intrusive/make_avl_set.html +doc/html/boost/intrusive/make_avl_set_member_hook.html +doc/html/boost/intrusive/make_avltree.html +doc/html/boost/intrusive/make_bs_set_base_hook.html +doc/html/boost/intrusive/make_bs_set_member_hook.html +doc/html/boost/intrusive/make_hashtable.html +doc/html/boost/intrusive/make_list_base_hook.html +doc/html/boost/intrusive/make_list.html +doc/html/boost/intrusive/make_list_member_hook.html +doc/html/boost/intrusive/make_multiset.html +doc/html/boost/intrusive/make_rbtree.html +doc/html/boost/intrusive/make_set_base_hook.html +doc/html/boost/intrusive/make_set.html +doc/html/boost/intrusive/make_set_member_hook.html +doc/html/boost/intrusive/make_sg_multiset.html +doc/html/boost/intrusive/make_sg_set.html +doc/html/boost/intrusive/make_sgtree.html +doc/html/boost/intrusive/make_slist_base_hook.html +doc/html/boost/intrusive/make_slist.html +doc/html/boost/intrusive/make_slist_member_hook.html +doc/html/boost/intrusive/make_splay_multiset.html +doc/html/boost/intrusive/make_splay_set_base_hook.html +doc/html/boost/intrusive/make_splay_set.html +doc/html/boost/intrusive/make_splay_set_member_hook.html +doc/html/boost/intrusive/make_splaytree.html +doc/html/boost/intrusive/make_treap_multiset.html +doc/html/boost/intrusive/make_treap_set.html +doc/html/boost/intrusive/make_trie.html +doc/html/boost/intrusive/make_unordered_multiset.html +doc/html/boost/intrusive/make_unordered_set_base_id1073001.html +doc/html/boost/intrusive/make_unordered_set.html +doc/html/boost/intrusive/make_unordered_set_memb_id1073382.html +doc/html/boost/intrusive/max_pointer_plus_bits.html +doc/html/boost/intrusive/max_pointer_plus_bits_v_id997966.html +doc/html/boost/intrusive/member_hook.html +doc/html/boost/intrusive/member_value_traits.html +doc/html/boost/intrusive/multiset.html +doc/html/boost/intrusive/optimize_multikey.html +doc/html/boost/intrusive/optimize_size.html +doc/html/boost/intrusive/pointer_plus_bits_T___N_id997998.html +doc/html/boost/intrusive/power_2_buckets.html +doc/html/boost/intrusive/priority_compare.html +doc/html/boost/intrusive/priority.html +doc/html/boost/intrusive/rbtree_algorithms.html +doc/html/boost/intrusive/rbtree.html +doc/html/boost/intrusive/set_base_hook.html +doc/html/boost/intrusive/set.html +doc/html/boost/intrusive/set_member_hook.html +doc/html/boost/intrusive/sg_multiset.html +doc/html/boost/intrusive/sg_set.html +doc/html/boost/intrusive/sgtree_algorithms.html +doc/html/boost/intrusive/sgtree.html +doc/html/boost/intrusive/size_type.html +doc/html/boost/intrusive/slist_base_hook.html +doc/html/boost/intrusive/slist.html +doc/html/boost/intrusive/slist_member_hook.html +doc/html/boost/intrusive/splay_multiset.html +doc/html/boost/intrusive/splay_set_base_hook.html +doc/html/boost/intrusive/splay_set.html +doc/html/boost/intrusive/splay_set_member_hook.html +doc/html/boost/intrusive/splaytree_algorithms.html +doc/html/boost/intrusive/splaytree.html +doc/html/boost/intrusive/store_hash.html +doc/html/boost/intrusive/tag.html +doc/html/boost/intrusive/treap_algorithms.html +doc/html/boost/intrusive/treap.html +doc/html/boost/intrusive/treap_multiset.html +doc/html/boost/intrusive/treap_set.html +doc/html/boost/intrusive/trivial_value_traits.html +doc/html/boost/intrusive/unordered_multiset.html +doc/html/boost/intrusive/unordered_set_base_hook.html +doc/html/boost/intrusive/unordered_set.html +doc/html/boost/intrusive/unordered_set_member_hook.html +doc/html/boost/intrusive/value_traits.html +doc/html/boost/intrusive/void_pointer.html +doc/html/boost/is_recursive_wrapper.html +doc/html/boost/is_reference_wrapper.html +doc/html/boost/lambda/plain_return_type_1_una_id1396937.html +doc/html/boost/lambda/plain_return_type_1_una_id1396979.html +doc/html/boost/lambda/plain_return_type_1_una_id1397458.html +doc/html/boost/lambda/plain_return_type_1_una_id1397499.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396329.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396377.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396425.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396474.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396522.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396566.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396609.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396653.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396697.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396757.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396817.html +doc/html/boost/lambda/plain_return_type_2_ari_id1396877.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397020.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397080.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397129.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397178.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397238.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397288.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397338.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397398.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397540.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397600.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397661.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397721.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397781.html +doc/html/boost/lambda/plain_return_type_2_ari_id1397813.html +doc/html/boost/lambda/plain_return_type_2_ari_id1398117.html +doc/html/boost/lambda/plain_return_type_2_ari_id1398149.html +doc/html/boost/lambda/plain_return_type_2_ari_id1398179.html +doc/html/boost/lambda/plain_return_type_2_ari_id1398231.html +doc/html/boost/last_value.html +doc/html/boost/last_value_void_id628632.html +doc/html/boost/local_time/ambiguous_result.html +doc/html/boost/local_time/bad_adjustment.html +doc/html/boost/local_time/bad_offset.html +doc/html/boost/local_time/custom_time_zone_base.html +doc/html/boost/local_time/dst_not_valid.html +doc/html/boost/local_time/first_last_rule_spec.html +doc/html/boost/local_time/last_last_rule_spec.html +doc/html/boost/local_time/local_date_time_base.html +doc/html/boost/local_time/nth_kday_rule_spec.html +doc/html/boost/local_time/nth_last_rule_spec.html +doc/html/boost/local_time/operator___id352097.html +doc/html/boost/local_time/operator-__id380792.html +doc/html/boost/local_time/operator-_id385349.html +doc/html/boost/local_time/operator-__id395399.html +doc/html/boost/local_time/operator-_id398809.html +doc/html/boost/local_time/operator__id464165.html +doc/html/boost/local_time/operator__id603426.html +doc/html/boost/local_time/operator___id603455.html +doc/html/boost/local_time/partial_date_rule_spec.html +doc/html/boost/local_time/posix_time_zone_base.html +doc/html/boost/local_time/time_label_invalid.html +doc/html/boost/local_time/tz_database.html +doc/html/boost/logic/get_default_indetermina_id641177.html +doc/html/boost/logic/indeterminate.html +doc/html/boost/logic/indeterminate_name.html +doc/html/boost/logic/operator_id1146004.html +doc/html/boost/logic/operator_id1146970.html +doc/html/boost/logic/operator___id614760.html +doc/html/boost/logic/operator___id614904.html +doc/html/boost/logic/operator___id623026.html +doc/html/boost/logic/operator_id631254.html +doc/html/boost/logic/operator_id659324.html +doc/html/boost/logic/operator__id702163.html +doc/html/boost/logic/tribool.html +doc/html/boost/logic/tribool/value_t.html +doc/html/boost/make_recursive_variant.html +doc/html/boost/make_recursive_variant__id637397.html +doc/html/boost/make_variant_over.html +doc/html/boost/mpi/all_gather.html +doc/html/boost/mpi/allocator.html +doc/html/boost/mpi/allocator/rebind.html +doc/html/boost/mpi/allocator_void_id924233.html +doc/html/boost/mpi/allocator_void_id924233/rebind.html +doc/html/boost/mpi/all_reduce.html +doc/html/boost/mpi/all_to_all.html +doc/html/boost/mpi/any_source.html +doc/html/boost/mpi/any_tag.html +doc/html/boost/mpi/bitwise_and.html +doc/html/boost/mpi/bitwise_or.html +doc/html/boost/mpi/bitwise_xor.html +doc/html/boost/mpi/broadcast.html +doc/html/BOOST_MPI_CALLING_CONVENTION.html +doc/html/BOOST_MPI_CHECK_RESULT.html +doc/html/boost/mpi/comm_create_kind.html +doc/html/boost/mpi/communicator.html +doc/html/boost/mpi/content.html +doc/html/boost/mpi/environment.html +doc/html/boost/mpi/exception.html +doc/html/boost/mpi/gather.html +doc/html/boost/mpi/get_content.html +doc/html/boost/mpi/get_id896645.html +doc/html/boost/mpi/get_id896675.html +doc/html/boost/mpi/get_mpi_datatype.html +doc/html/boost/mpi/graph_communicator.html +doc/html/boost/mpi/group.html +doc/html/BOOST_MPI_HAS_MEMORY_ALLOCATION.html +doc/html/BOOST_MPI_HAS_NOARG_INITIALIZATION.html +doc/html/boost/mpi/intercommunicator.html +doc/html/boost/mpi/is_commutative.html +doc/html/boost/mpi/is_mpi_builtin_datatype.html +doc/html/boost/mpi/is_mpi_byte_datatype.html +doc/html/boost/mpi/is_mpi_complex_datatype.html +doc/html/boost/mpi/is_mpi_datatype.html +doc/html/boost/mpi/is_mpi_floating_point_d_id895005.html +doc/html/boost/mpi/is_mpi_integer_datatype.html +doc/html/boost/mpi/is_mpi_logical_datatype.html +doc/html/boost/mpi/is_mpi_op.html +doc/html/boost/mpi/logical_xor.html +doc/html/boost/mpi/maximum.html +doc/html/boost/mpi/minimum.html +doc/html/boost/mpi/operator___id894797.html +doc/html/boost/mpi/operator___id894844.html +doc/html/boost/mpi/operator___id897185.html +doc/html/boost/mpi/operator___id897232.html +doc/html/boost/mpi/operator_id897279.html +doc/html/boost/mpi/operator__id897341.html +doc/html/boost/mpi/operator-_id897395.html +doc/html/boost/mpi/operator___id924699.html +doc/html/boost/mpi/operator___id924750.html +doc/html/boost/mpi/packed.html +doc/html/boost/mpi/packed_iarchive.html +doc/html/boost/mpi/packed_oarchive.html +doc/html/boost/mpi/packed_skeleton_iarchive.html +doc/html/boost/mpi/packed_skeleton_oarchive.html +doc/html/boost/mpi/python/register_serialized.html +doc/html/boost/mpi/python/register_skeleton_and_c_id899559.html +doc/html/boost/mpi/reduce.html +doc/html/boost/mpi/request.html +doc/html/boost/mpi/scan.html +doc/html/boost/mpi/scatter.html +doc/html/boost/mpi/skeleton.html +doc/html/boost/mpi/skeleton_proxy.html +doc/html/boost/mpi/status.html +doc/html/boost/mpi/test_all.html +doc/html/boost/mpi/test_any.html +doc/html/boost/mpi/test_some.html +doc/html/boost/mpi/timer.html +doc/html/boost/mpi/wait_all.html +doc/html/boost/mpi/wait_any.html +doc/html/boost/mpi/wait_some.html +doc/html/boost/numeric/functional/as_max_T__std_valarray__id564618.html +doc/html/boost/numeric/functional/as_max_T__std_vector_ta_id565129.html +doc/html/boost/numeric/functional/as_min_T__std_valarray__id564579.html +doc/html/boost/numeric/functional/as_min_T__std_vector_ta_id565090.html +doc/html/boost/numeric/functional/as_one_T__std_valarray__id564695.html +doc/html/boost/numeric/functional/as_one_T__std_vector_ta_id565206.html +doc/html/boost/numeric/functional/as_zero_T__std_valarray_id564657.html +doc/html/boost/numeric/functional/as_zero_T__std_vector_t_id565167.html +doc/html/boost/numeric/functional/average_Left__Right__st_id564389.html +doc/html/boost/numeric/functional/average_Left__Right__st_id564976.html +doc/html/boost/numeric/functional/left_ref.html +doc/html/boost/numeric/functional/max_assign_Left__Right__id564336.html +doc/html/boost/numeric/functional/max_assign_Left__Right__id564923.html +doc/html/boost/numeric/functional/min_assign_Left__Right__id564282.html +doc/html/boost/numeric/functional/min_assign_Left__Right__id564870.html +doc/html/boost/numeric/functional/multiply_and_promote_to_id563367.html +doc/html/boost/numeric/functional/outer_product_base.html +doc/html/boost/numeric/functional/outer_product.html +doc/html/boost/numeric/functional/outer_product_Left__Rig_id548565.html +doc/html/boost/numeric/functional/promote_bool_const__Fro_id564553.html +doc/html/boost/numeric/functional/promote_bool__From__voi_id564510.html +doc/html/boost/numeric/functional/promote_To__From__std_v_id564419.html +doc/html/boost/numeric/functional/promote_To__From__std_v_id565001.html +doc/html/boost/numeric/functional/promote_ToFrom__ToFrom__id564466.html +doc/html/boost/numeric/functional/promote_ToFrom__ToFrom__id565048.html +doc/html/boost/numeric/functional/tag_std_valarray_T_id564262.html +doc/html/boost/numeric/functional/tag_std_vector_T__Al_id564844.html +doc/html/boost/numeric/op/outer_product.html +doc/html/boost/operator_id702125.html +doc/html/BOOST_PARAMETER_NESTED_KEYWORD.html +doc/html/boost/posix_time/duration_from_string.html +doc/html/boost/posix_time/from_ftime.html +doc/html/boost/posix_time/hours.html +doc/html/boost/posix_time/millisec_posix_time_sys_id582721.html +doc/html/boost/posix_time/minutes.html +doc/html/boost/posix_time/operator-__id367952.html +doc/html/boost/posix_time/operator-_id383668.html +doc/html/boost/posix_time/operator_id405807.html +doc/html/boost/posix_time/operator__id585870.html +doc/html/boost/posix_time/operator___id585898.html +doc/html/boost/posix_time/operator-_id585925.html +doc/html/boost/posix_time/operator-__id585954.html +doc/html/boost/posix_time/operator__id585981.html +doc/html/boost/posix_time/operator___id586009.html +doc/html/boost/posix_time/posix_time_system_config.html +doc/html/boost/posix_time/ptime.html +doc/html/boost/posix_time/seconds.html +doc/html/boost/posix_time/simple_time_rep.html +doc/html/boost/posix_time/time_duration.html +doc/html/boost/posix_time/wtime_facet.html +doc/html/boost/program_options/abstract_variables_map.html +doc/html/boost/program_options/ambiguous_option.html +doc/html/boost/program_options/basic_command_line_parser.html +doc/html/boost/program_options/basic_option.html +doc/html/boost/program_options/basic_parsed_options.html +doc/html/boost/program_options/basic_parsed_options_wc_id883404.html +doc/html/boost/program_options/bool_switch.html +doc/html/boost/program_options/collect_unrecognized.html +doc/html/boost/program_options/collect_unrecognized_mode.html +doc/html/boost/program_options/command_line_style/style_t.html +doc/html/boost/program_options/duplicate_option_error.html +doc/html/boost/program_options/error.html +doc/html/boost/program_options/ext_parser.html +doc/html/boost/program_options/invalid_command_line_style.html +doc/html/boost/program_options/invalid_command_line_sy_id904604.html +doc/html/boost/program_options/invalid_option_value.html +doc/html/boost/program_options/invalid_syntax.html +doc/html/boost/program_options/multiple_occurrences.html +doc/html/boost/program_options/multiple_values.html +doc/html/boost/program_options/notify.html +doc/html/boost/program_options/option_description.html +doc/html/boost/program_options/options_description_eas_id884178.html +doc/html/boost/program_options/options_description.html +doc/html/boost/program_options/parse_command_line.html +doc/html/boost/program_options/parse_config_file.html +doc/html/boost/program_options/parse_environment_id962059.html +doc/html/boost/program_options/parse_environment_id962087.html +doc/html/boost/program_options/parse_environment_id967763.html +doc/html/boost/program_options/positional_options_desc_id962126.html +doc/html/boost/program_options/store_id914028.html +doc/html/boost/program_options/store_id979276.html +doc/html/boost/program_options/too_few_positional_opti_id904583.html +doc/html/boost/program_options/too_many_positional_opt_id904562.html +doc/html/boost/program_options/typed_value_base.html +doc/html/boost/program_options/typed_value.html +doc/html/boost/program_options/unknown_option.html +doc/html/boost/program_options/untyped_value.html +doc/html/boost/program_options/validation_error.html +doc/html/boost/program_options/value_id880161.html +doc/html/boost/program_options/value_semantic_codecvt__id884504.html +doc/html/boost/program_options/value_semantic_codecvt__id979300.html +doc/html/boost/program_options/value_semantic_codecvt__id979314.html +doc/html/boost/program_options/value_semantic.html +doc/html/boost/program_options/variables_map.html +doc/html/boost/program_options/variable_value.html +doc/html/BOOST_PROGRAM_OPTIONS_VERSION.html +doc/html/boost/program_options/wvalue.html +doc/html/boost_propertytree/accessing.html +doc/html/boost/property_tree/basic_ptree.html +doc/html/boost_propertytree/container.html +doc/html/boost/property_tree/customize_stream_Ch__Tr_id948676.html +doc/html/boost/property_tree/customize_stream_Ch__Tr_id948744.html +doc/html/boost/property_tree/customize_stream_Ch__Tr_id948818.html +doc/html/boost/property_tree/customize_stream_Ch__Tr_id948886.html +doc/html/boost/property_tree/customize_stream_Ch__Tr_id948954.html +doc/html/boost/property_tree/customize_stream.html +doc/html/boost/property_tree/id_translator.html +doc/html/boost/property_tree/info_parser/read_info_id879942.html +doc/html/boost/property_tree/info_parser/read_info_id879982.html +doc/html/boost/property_tree/info_parser/read_info_id880025.html +doc/html/boost/property_tree/info_parser/read_info_id880070.html +doc/html/boost/property_tree/info_parser/write_info_id880119.html +doc/html/boost/property_tree/info_parser/write_info_id941712.html +doc/html/boost/property_tree/ini_parser/ini_parser_error.html +doc/html/boost/property_tree/ini_parser/read_ini_id946845.html +doc/html/boost/property_tree/ini_parser/read_ini_id946890.html +doc/html/boost/property_tree/ini_parser/validate_flags.html +doc/html/boost/property_tree/ini_parser/write_ini_id946945.html +doc/html/boost/property_tree/ini_parser/write_ini_id947022.html +doc/html/boost/property_tree/iptree.html +doc/html/boost/property_tree/json_parser/read_json_id884681.html +doc/html/boost/property_tree/json_parser/read_json_id947138.html +doc/html/boost/property_tree/json_parser/write_json_id910414.html +doc/html/boost/property_tree/json_parser/write_json_id910467.html +doc/html/boost/property_tree/load.html +doc/html/boost_propertytree/parsers.html +doc/html/boost/property_tree/path.html +doc/html/boost/property_tree/path_of_std_basic_strin_id949413.html +doc/html/boost/property_tree/ptree_bad_data.html +doc/html/boost/property_tree/ptree_bad_path.html +doc/html/boost/property_tree/ptree_error.html +doc/html/boost/property_tree/ptree.html +doc/html/boost/property_tree/save.html +doc/html/boost/property_tree/serialize_id948534.html +doc/html/boost/property_tree/stream_translator.html +doc/html/boost/property_tree/string_path.html +doc/html/boost/property_tree/swap_id948315.html +doc/html/boost_propertytree/synopsis.html +doc/html/boost/property_tree/translator_between_std__id879891.html +doc/html/boost/property_tree/translator_between_std__id949101.html +doc/html/boost/property_tree/translator_between_T__T_id983289.html +doc/html/boost_propertytree/tutorial.html +doc/html/boost/property_tree/wiptree.html +doc/html/boost/property_tree/wpath.html +doc/html/boost/property_tree/wptree.html +doc/html/boost/property_tree/xml_parser/read_xml_id954816.html +doc/html/boost/property_tree/xml_parser/read_xml_id960538.html +doc/html/boost/property_tree/xml_parser/write_xml_id957066.html +doc/html/boost/property_tree/xml_parser/write_xml_id960643.html +doc/html/BOOST_PROTO_A_const.html +doc/html/BOOST_PROTO_A_const_ref_a.html +doc/html/BOOST_PROTO_A_const_ref.html +doc/html/boost/proto/address_of.html +doc/html/BOOST_PROTO_A_id1250392.html +doc/html/BOOST_PROTO_a_id1250852.html +doc/html/boost/proto/and_.html +doc/html/BOOST_PROTO_A_ref_a.html +doc/html/BOOST_PROTO_A_ref.html +doc/html/boost/proto/arity_of.html +doc/html/boost/proto/as_child_id1260589.html +doc/html/boost/proto/as_expr_id1260362.html +doc/html/boost/proto/assign.html +doc/html/BOOST_PROTO_AUTO.html +doc/html/BOOST_PROTO_BASIC_EXTENDS.html +doc/html/boost/proto/binary_expr.html +doc/html/boost/proto/bitwise_and_assign.html +doc/html/boost/proto/bitwise_and.html +doc/html/boost/proto/bitwise_or_assign.html +doc/html/boost/proto/bitwise_or.html +doc/html/boost/proto/bitwise_xor_assign.html +doc/html/boost/proto/bitwise_xor.html +doc/html/boost/proto/_byref.html +doc/html/boost/proto/_byval.html +doc/html/boost/proto/by_value_generator.html +doc/html/boost/proto/callable.html +doc/html/boost/proto/call.html +doc/html/boost/proto/_child_c.html +doc/html/boost/proto/child_c_id1261036.html +doc/html/boost/proto/child_id1260794.html +doc/html/boost/proto/comma.html +doc/html/boost/proto/complement.html +doc/html/boost/proto/compose_generators.html +doc/html/boost/proto/context/callable_context.html +doc/html/boost/proto/context/callable_eval.html +doc/html/boost/proto/context/default_context.html +doc/html/boost/proto/context/default_eval.html +doc/html/boost/proto/context/null_context.html +doc/html/boost/proto/context/null_eval.html +doc/html/boost/proto/convertible_to.html +doc/html/boost/proto/_data.html +doc/html/boost/proto/deduce_domain.html +doc/html/boost/proto/deep_copy_id1231458.html +doc/html/boost/proto/default_domain.html +doc/html/boost/proto/default_generator.html +doc/html/boost/proto/_default.html +doc/html/BOOST_PROTO_DEFINE_OPERATORS.html +doc/html/boost/proto/dereference.html +doc/html/boost/proto/display_expr_id1231114.html +doc/html/boost/proto/divides_assign.html +doc/html/boost/proto/divides.html +doc/html/boost/proto/domain.html +doc/html/boost/proto/domain_of.html +doc/html/boost/proto/equal_to.html +doc/html/boost/proto/eval_id1232192.html +doc/html/boost/proto/exact.html +doc/html/boost/proto/exops/_is_extension__default__id1247119.html +doc/html/boost/proto/_expr.html +doc/html/boost/proto/expr.html +doc/html/BOOST_PROTO_EXTENDS_ASSIGN.html +doc/html/BOOST_PROTO_EXTENDS_FUNCTION.html +doc/html/boost/proto/extends.html +doc/html/BOOST_PROTO_EXTENDS.html +doc/html/BOOST_PROTO_EXTENDS_SUBSCRIPT.html +doc/html/boost/proto/flatten_id1235244.html +doc/html/boost/proto/fold.html +doc/html/boost/proto/fold_tree.html +doc/html/boost/proto/functional/as_child.html +doc/html/boost/proto/functional/as_expr.html +doc/html/boost/proto/functional/child_c.html +doc/html/boost/proto/functional/child.html +doc/html/boost/proto/functional/deep_copy.html +doc/html/boost/proto/functional/display_expr.html +doc/html/boost/proto/functional/eval.html +doc/html/boost/proto/functional/flatten.html +doc/html/boost/proto/functional/left.html +doc/html/boost/proto/functional/make_expr.html +doc/html/boost/proto/functional/pop_front.html +doc/html/boost/proto/functional/reverse.html +doc/html/boost/proto/functional/right.html +doc/html/boost/proto/functional/unpack_expr.html +doc/html/boost/proto/functional/value.html +doc/html/boost/proto/function.html +doc/html/boost/proto/generator.html +doc/html/boost/proto/greater_equal.html +doc/html/boost/proto/greater.html +doc/html/boost/proto/_.html +doc/html/boost/proto/if_else_.html +doc/html/boost/proto/if_.html +doc/html/boost/proto/is_aggregate.html +doc/html/boost/proto/is_callable.html +doc/html/boost/proto/is_domain.html +doc/html/boost/proto/is_expr.html +doc/html/boost/proto/is_extension.html +doc/html/boost/proto/is_proto_expr.html +doc/html/boost/proto/lazy.html +doc/html/boost/proto/left_id1261304.html +doc/html/boost/proto/less_equal.html +doc/html/boost/proto/less.html +doc/html/boost/proto/listN.html +doc/html/boost/proto/literal.html +doc/html/boost/proto/lit.html +doc/html/BOOST_PROTO_LOCAL_ITERATE.html +doc/html/boost/proto/logical_and.html +doc/html/boost/proto/logical_not.html +doc/html/boost/proto/logical_or.html +doc/html/boost/proto/make_expr_id1237518.html +doc/html/boost/proto/make.html +doc/html/boost/proto/matches.html +doc/html/BOOST_PROTO_MAX_ARITY.html +doc/html/BOOST_PROTO_MAX_FUNCTION_CALL_ARITY.html +doc/html/BOOST_PROTO_MAX_LOGICAL_ARITY.html +doc/html/boost/proto/mem_ptr.html +doc/html/boost/proto/minus_assign.html +doc/html/boost/proto/minus.html +doc/html/boost/proto/modulus_assign.html +doc/html/boost/proto/modulus.html +doc/html/boost/proto/multiplies_assign.html +doc/html/boost/proto/multiplies.html +doc/html/boost/proto/nary_expr.html +doc/html/boost/proto/negate.html +doc/html/boost/proto/N.html +doc/html/boost/proto/noinvoke.html +doc/html/boost/proto/not_equal_to.html +doc/html/boost/proto/not_.html +doc/html/boost/proto/nullary_expr.html +doc/html/boost/proto/or_.html +doc/html/boost/proto/otherwise.html +doc/html/boost/proto/pass_through.html +doc/html/boost/proto/plus_assign.html +doc/html/boost/proto/plus.html +doc/html/boost/proto/pod_generator.html +doc/html/boost/proto/post_dec.html +doc/html/boost/proto/post_inc.html +doc/html/boost/proto/pre_dec.html +doc/html/boost/proto/pre_inc.html +doc/html/boost/proto/protect.html +doc/html/BOOST_PROTO_ref_a.html +doc/html/BOOST_PROTO_REPEAT_EX.html +doc/html/BOOST_PROTO_REPEAT_FROM_TO_EX.html +doc/html/BOOST_PROTO_REPEAT_FROM_TO.html +doc/html/BOOST_PROTO_REPEAT.html +doc/html/boost/proto/result_of/as_child.html +doc/html/boost/proto/result_of/as_expr.html +doc/html/boost/proto/result_of/child_c.html +doc/html/boost/proto/result_of/child.html +doc/html/boost/proto/result_of/deep_copy.html +doc/html/boost/proto/result_of/eval.html +doc/html/boost/proto/result_of/flatten.html +doc/html/boost/proto/result_of/left.html +doc/html/boost/proto/result_of/make_expr.html +doc/html/boost/proto/result_of/make_expr_Tag__Domain___id1237142.html +doc/html/boost/proto/result_of/right.html +doc/html/boost/proto/result_of/unpack_expr.html +doc/html/boost/proto/result_of/unpack_expr_Tag__Domain_id1237414.html +doc/html/boost/proto/result_of/value.html +doc/html/boost/proto/reverse_fold.html +doc/html/boost/proto/reverse_fold_tree.html +doc/html/boost/proto/right_id1261427.html +doc/html/boost/proto/shift_left_assign.html +doc/html/boost/proto/shift_left.html +doc/html/boost/proto/shift_right_assign.html +doc/html/boost/proto/shift_right.html +doc/html/boost/proto/_state.html +doc/html/boost/proto/subscript.html +doc/html/boost/proto/switch_.html +doc/html/boost/proto/tag/address_of.html +doc/html/boost/proto/tag/assign.html +doc/html/boost/proto/tag/bitwise_and_assign.html +doc/html/boost/proto/tag/bitwise_and.html +doc/html/boost/proto/tag/bitwise_or_assign.html +doc/html/boost/proto/tag/bitwise_or.html +doc/html/boost/proto/tag/bitwise_xor_assign.html +doc/html/boost/proto/tag/bitwise_xor.html +doc/html/boost/proto/tag/comma.html +doc/html/boost/proto/tag/complement.html +doc/html/boost/proto/tag/dereference.html +doc/html/boost/proto/tag/divides_assign.html +doc/html/boost/proto/tag/divides.html +doc/html/boost/proto/tag/equal_to.html +doc/html/boost/proto/tag/function.html +doc/html/boost/proto/tag/greater_equal.html +doc/html/boost/proto/tag/greater.html +doc/html/boost/proto/tag/if_else_.html +doc/html/boost/proto/tag/less_equal.html +doc/html/boost/proto/tag/less.html +doc/html/boost/proto/tag/logical_and.html +doc/html/boost/proto/tag/logical_not.html +doc/html/boost/proto/tag/logical_or.html +doc/html/boost/proto/tag/mem_ptr.html +doc/html/boost/proto/tag/minus_assign.html +doc/html/boost/proto/tag/minus.html +doc/html/boost/proto/tag/modulus_assign.html +doc/html/boost/proto/tag/modulus.html +doc/html/boost/proto/tag/multiplies_assign.html +doc/html/boost/proto/tag/multiplies.html +doc/html/boost/proto/tag/negate.html +doc/html/boost/proto/tag/not_equal_to.html +doc/html/boost/proto/tag_of.html +doc/html/boost/proto/tag/plus_assign.html +doc/html/boost/proto/tag/plus.html +doc/html/boost/proto/tag/post_dec.html +doc/html/boost/proto/tag/post_inc.html +doc/html/boost/proto/tag/pre_dec.html +doc/html/boost/proto/tag/pre_inc.html +doc/html/boost/proto/tag/shift_left_assign.html +doc/html/boost/proto/tag/shift_left.html +doc/html/boost/proto/tag/shift_right_assign.html +doc/html/boost/proto/tag/shift_right.html +doc/html/boost/proto/tag/subscript.html +doc/html/boost/proto/tag/terminal.html +doc/html/boost/proto/tag/unary_plus.html +doc/html/boost/proto/term.html +doc/html/boost/proto/terminal.html +doc/html/boost/proto/transform.html +doc/html/boost/proto/transform_impl.html +doc/html/BOOST_PROTO_typename_A.html +doc/html/boost/proto/unary_expr.html +doc/html/boost/proto/unary_plus.html +doc/html/boost/proto/unexpr.html +doc/html/boost/proto/unpack_expr_id1237762.html +doc/html/boost/proto/_value.html +doc/html/boost/proto/value_id1261197.html +doc/html/boost/proto/vararg.html +doc/html/boost/proto/when_Grammar__Fun_id1268025.html +doc/html/boost/proto/when_Grammar__R_A___id1268108.html +doc/html/boost/proto/when.html +doc/html/boost/recursive_wrapper.html +doc/html/boost/reference_wrapper.html +doc/html/BOOST_SERIALIZATION_SPL_id331564.html +doc/html/BOOST_SERIALIZATION_SPL_id356753.html +doc/html/boost/signal.html +doc/html/boost/signalN.html +doc/html/boost/signals2/connection.html +doc/html/boost/signals2/deconstruct_access.html +doc/html/boost/signals2/deconstruct.html +doc/html/boost/signals2/dummy_mutex.html +doc/html/boost/signals2/expired_slot.html +doc/html/boost/signals2/keywords/combiner_type.html +doc/html/boost/signals2/keywords/extended_slot_function__id1109163.html +doc/html/boost/signals2/keywords/group_compare_type.html +doc/html/boost/signals2/keywords/group_type.html +doc/html/boost/signals2/keywords/mutex_type.html +doc/html/boost/signals2/keywords/signature_type.html +doc/html/boost/signals2/keywords/slot_function_type.html +doc/html/boost/signals2/last_value.html +doc/html/boost/signals2/last_value_void_id690370.html +doc/html/boost/signals2/mutex.html +doc/html/boost/signals2/no_slots_error.html +doc/html/boost/signals2/optional_last_value.html +doc/html/boost/signals2/optional_last_value_voi_id622011.html +doc/html/boost/signals2/postconstructor_invoker.html +doc/html/boost/signals2/scoped_connection.html +doc/html/boost/signals2/shared_connection_block.html +doc/html/boost/signals2/signal/arg.html +doc/html/boost/signals2/signal_base.html +doc/html/boost/signals2/signal.html +doc/html/boost/signals2/signal_type.html +doc/html/boost/signals2/slot/arg.html +doc/html/boost/signals2/slot_base.html +doc/html/boost/signals2/slot.html +doc/html/boost/signals2/trackable.html +doc/html/boost/signals/connection.html +doc/html/boost/signals/scoped_connection.html +doc/html/boost/signals/trackable.html +doc/html/boost/slot.html +doc/html/boost_staticassert/how.html +doc/html/boost_staticassert.html +doc/html/boost_staticassert/test.html +doc/html/boost/static_visitor.html +doc/html/boost/swap_id646306.html +doc/html/boost_tr1/config.html +doc/html/boost_tr1/header_list.html +doc/html/boost_tr1.html +doc/html/boost_tr1/implementation.html +doc/html/boost_tr1/subject_list.html +doc/html/boost_tr1/testing.html +doc/html/boost_tr1/usage.html +doc/html/BOOST_TRIBOOL_THIRD_STATE.html +doc/html/boost/units/absolute.html +doc/html/boost/units/abstract/amount_unit_tag.html +doc/html/boost/units/abstract/current_unit_tag.html +doc/html/boost/units/abstract/length_unit_tag.html +doc/html/boost/units/abstract/luminous_intensity_unit_id1414537.html +doc/html/boost/units/abstract/mass_unit_tag.html +doc/html/boost/units/abstract/plane_angle_unit_tag.html +doc/html/boost/units/abstract/solid_angle_unit_tag.html +doc/html/boost/units/abstract/temperature_unit_tag.html +doc/html/boost/units/abstract/time_unit_tag.html +doc/html/boost_units/Acknowledgements.html +doc/html/boost/units/add_typeof_helper.html +doc/html/boost/units/add_typeof_helper_quant_id1400850.html +doc/html/boost/units/add_typeof_helper_quant_id1400904.html +doc/html/boost/units/amount_base_dimension.html +doc/html/boost/units/angle/degree_base_unit.html +doc/html/boost/units/angle/gradian_base_unit.html +doc/html/boost/units/angle/radian_base_unit.html +doc/html/boost/units/angle/steradian_base_unit.html +doc/html/boost/units/astronomical/astronomical_unit_base__id1415031.html +doc/html/boost/units/astronomical/light_second_base_unit.html +doc/html/boost/units/astronomical/parsec_base_unit.html +doc/html/boost/units/base_dimension.html +doc/html/boost/units/base_unit.html +doc/html/boost/units/base_unit_info_abstract_id1414255.html +doc/html/boost/units/base_unit_info_abstract_id1414284.html +doc/html/boost/units/base_unit_info_abstract_id1414313.html +doc/html/boost/units/base_unit_info_abstract_id1414341.html +doc/html/boost/units/base_unit_info_abstract_id1414370.html +doc/html/boost/units/base_unit_info_abstract_id1414399.html +doc/html/boost/units/base_unit_info_abstract_id1414428.html +doc/html/boost/units/base_unit_info_abstract_id1414457.html +doc/html/boost/units/base_unit_info_abstract_id1414486.html +doc/html/boost/units/base_unit_info_angle_ar_id1414708.html +doc/html/boost/units/base_unit_info_angle_ar_id1414761.html +doc/html/boost/units/base_unit_info_angle_re_id1414922.html +doc/html/boost/units/base_unit_info_astronom_id1415065.html +doc/html/boost/units/base_unit_info_astronom_id1415118.html +doc/html/boost/units/base_unit_info_astronom_id1415172.html +doc/html/boost/units/base_unit_info_astronom_id1415263.html +doc/html/boost/units/base_unit_info.html +doc/html/boost/units/base_unit_info_imperial_id1415732.html +doc/html/boost/units/base_unit_info_imperial_id1415784.html +doc/html/boost/units/base_unit_info_imperial_id1415837.html +doc/html/boost/units/base_unit_info_imperial_id1415889.html +doc/html/boost/units/base_unit_info_imperial_id1415942.html +doc/html/boost/units/base_unit_info_imperial_id1415994.html +doc/html/boost/units/base_unit_info_imperial_id1416046.html +doc/html/boost/units/base_unit_info_imperial_id1416099.html +doc/html/boost/units/base_unit_info_imperial_id1416152.html +doc/html/boost/units/base_unit_info_imperial_id1416204.html +doc/html/boost/units/base_unit_info_imperial_id1416257.html +doc/html/boost/units/base_unit_info_imperial_id1416309.html +doc/html/boost/units/base_unit_info_imperial_id1416433.html +doc/html/boost/units/base_unit_info_imperial_id1416485.html +doc/html/boost/units/base_unit_info_imperial_id1416538.html +doc/html/boost/units/base_unit_info_imperial_id1416590.html +doc/html/boost/units/base_unit_info_imperial_id1416642.html +doc/html/boost/units/base_unit_info_metric_a_id1416747.html +doc/html/boost/units/base_unit_info_metric_d_id1416940.html +doc/html/boost/units/base_unit_info_metric_f_id1416989.html +doc/html/boost/units/base_unit_info_metric_h_id1417075.html +doc/html/boost/units/base_unit_info_metric_m_id1417196.html +doc/html/boost/units/base_unit_info_metric_m_id1417245.html +doc/html/boost/units/base_unit_info_metric_n_id1417330.html +doc/html/boost/units/base_unit_info_metric_t_id1417380.html +doc/html/boost/units/base_unit_info_metric_y_id1417465.html +doc/html/boost/units/base_unit_info_us_cup_b_id1417872.html +doc/html/boost/units/base_unit_info_us_dram__id1417924.html +doc/html/boost/units/base_unit_info_us_fluid_id1417976.html +doc/html/boost/units/base_unit_info_us_fluid_id1418029.html +doc/html/boost/units/base_unit_info_us_foot__id1418081.html +doc/html/boost/units/base_unit_info_us_gallo_id1418134.html +doc/html/boost/units/base_unit_info_us_gill__id1418186.html +doc/html/boost/units/base_unit_info_us_grain_id1418238.html +doc/html/boost/units/base_unit_info_us_hundr_id1418291.html +doc/html/boost/units/base_unit_info_us_inch__id1418343.html +doc/html/boost/units/base_unit_info_us_mil_b_id1418396.html +doc/html/boost/units/base_unit_info_us_mile__id1418448.html +doc/html/boost/units/base_unit_info_us_minim_id1418500.html +doc/html/boost/units/base_unit_info_us_ounce_id1418552.html +doc/html/boost/units/base_unit_info_us_quart_id1418713.html +doc/html/boost/units/base_unit_info_us_table_id1418765.html +doc/html/boost/units/base_unit_info_us_teasp_id1418818.html +doc/html/boost/units/base_unit_info_us_ton_b_id1418870.html +doc/html/boost/units/celsius/degree.html +doc/html/boost/units/celsius/degrees.html +doc/html/boost/units/cgs/barye.html +doc/html/boost/units/cgs/baryes.html +doc/html/boost/units/cgs/biot.html +doc/html/boost/units/cgs/biots.html +doc/html/boost/units/cgs/centimeter.html +doc/html/boost/units/cgs/centimeter_per_second.html +doc/html/boost/units/cgs/centimeters.html +doc/html/boost/units/cgs/centimeters_per_second.html +doc/html/boost/units/cgs/centimetre.html +doc/html/boost/units/cgs/centimetre_per_second.html +doc/html/boost/units/cgs/centimetres.html +doc/html/boost/units/cgs/centimetres_per_second.html +doc/html/boost/units/cgs/cubic_centimeter.html +doc/html/boost/units/cgs/cubic_centimeters.html +doc/html/boost/units/cgs/cubic_centimetre.html +doc/html/boost/units/cgs/cubic_centimetres.html +doc/html/boost/units/cgs/dyne.html +doc/html/boost/units/cgs/dynes.html +doc/html/boost/units/cgs/erg.html +doc/html/boost/units/cgs/ergs.html +doc/html/boost/units/cgs/gal.html +doc/html/boost/units/cgs/gals.html +doc/html/boost/units/cgs/gram_base_unit.html +doc/html/boost/units/cgs/gram.html +doc/html/boost/units/cgs/gramme.html +doc/html/boost/units/cgs/grammes.html +doc/html/boost/units/cgs/grams.html +doc/html/boost/units/cgs/kayser.html +doc/html/boost/units/cgs/kaysers.html +doc/html/boost/units/cgs/poise.html +doc/html/boost/units/cgs/reciprocal_centimeter.html +doc/html/boost/units/cgs/reciprocal_centimeters.html +doc/html/boost/units/cgs/reciprocal_centimetre.html +doc/html/boost/units/cgs/reciprocal_centimetres.html +doc/html/boost/units/cgs/second.html +doc/html/boost/units/cgs/seconds.html +doc/html/boost/units/cgs/square_centimeter.html +doc/html/boost/units/cgs/square_centimeters.html +doc/html/boost/units/cgs/square_centimetre.html +doc/html/boost/units/cgs/square_centimetres.html +doc/html/boost/units/cgs/stoke.html +doc/html/boost/units/cgs/stokes.html +doc/html/BOOST_UNITS_CHECK_HOMOGENEOUS_UNITS.html +doc/html/boost/units/conversion_helper.html +doc/html/boost/units/current_base_dimension.html +doc/html/BOOST_UNITS_DEFAULT_CONVERSION.html +doc/html/BOOST_UNITS_DEFAULT_CONVERSION_TEMPLATE.html +doc/html/BOOST_UNITS_DEFINE_CONVERSION_FACTOR.html +doc/html/BOOST_UNITS_DEFINE_CONVERSION_FACTOR_TEMPLATE.html +doc/html/BOOST_UNITS_DEFINE_CONVERSION_OFFSET.html +doc/html/boost/units/degree/degree.html +doc/html/boost/units/degree/degrees.html +doc/html/boost/units/derived_dimension.html +doc/html/boost_units/Dimensional_Analysis.html +doc/html/boost/units/dimensionless_quantity.html +doc/html/boost/units/dimensionless_type.html +doc/html/boost/units/dimensionless_unit.html +doc/html/boost/units/dim.html +doc/html/boost/units/divide_typeof_helper_bo_id1398329.html +doc/html/boost/units/divide_typeof_helper_bo_id1398413.html +doc/html/boost/units/divide_typeof_helper.html +doc/html/boost_units/Examples.html +doc/html/boost/units/fahrenheit/degree.html +doc/html/boost/units/fahrenheit/degrees.html +doc/html/boost_units/FAQ.html +doc/html/boost/units/get_dimension_absolute__id1394974.html +doc/html/boost/units/get_dimension.html +doc/html/boost/units/get_dimension_quantity__id1394999.html +doc/html/boost/units/get_dimension_unit_Dim__id1394946.html +doc/html/boost/units/get_system_absolute_Uni_id1395080.html +doc/html/boost/units/get_system.html +doc/html/boost/units/get_system_quantity_Uni_id1395104.html +doc/html/boost/units/get_system_unit_Dim__Sy_id1395051.html +doc/html/boost/units/gradian/gradian.html +doc/html/boost/units/gradian/gradians.html +doc/html/boost_units/HelpWanted.html +doc/html/boost/units/heterogeneous_system.html +doc/html/boost/units/homogeneous_system.html +doc/html/boost_units.html +doc/html/boost/units/imperial/pint_base_unit.html +doc/html/boost/units/imperial/pound_base_unit.html +doc/html/boost/units/imperial/yard_base_unit.html +doc/html/boost_units/Installation.html +doc/html/boost/units/is_dim_dim_T__V_id1395744.html +doc/html/boost/units/is_dimensionless.html +doc/html/boost/units/is_dimensionless_quanti_id1395858.html +doc/html/boost/units/is_dimensionless_quantity.html +doc/html/boost/units/is_dimensionless_unit_d_id1395838.html +doc/html/boost/units/is_dimensionless_unit.html +doc/html/boost/units/is_dimension_list_dimen_id1395808.html +doc/html/boost/units/is_dimension_list.html +doc/html/boost/units/is_dimension_list_list__id1395788.html +doc/html/boost/units/is_dim.html +doc/html/boost/units/is_quantity.html +doc/html/boost/units/is_quantity_of_dimensio_id1396016.html +doc/html/boost/units/is_quantity_of_dimension.html +doc/html/boost/units/is_quantity_of_system.html +doc/html/boost/units/is_quantity_of_system_q_id1396077.html +doc/html/boost/units/is_quantity_quantity_Un_id1395967.html +doc/html/boost/units/is_unit.html +doc/html/boost/units/is_unit_of_dimension_ab_id1396205.html +doc/html/boost/units/is_unit_of_dimension.html +doc/html/boost/units/is_unit_of_dimension_un_id1396181.html +doc/html/boost/units/is_unit_of_system_absol_id1396280.html +doc/html/boost/units/is_unit_of_system.html +doc/html/boost/units/is_unit_of_system_unit__id1396256.html +doc/html/boost/units/is_unit_unit_Dim__Syste_id1396133.html +doc/html/boost/units/length_base_dimension.html +doc/html/boost/units/luminous_intensity_base_id1404459.html +doc/html/boost/units/make_dimension_list.html +doc/html/boost/units/make_scaled_unit.html +doc/html/boost/units/make_scaled_unit_unit_D_id1399208.html +doc/html/boost/units/make_system.html +doc/html/boost/units/mass_base_dimension.html +doc/html/boost/units/metric/are_base_unit.html +doc/html/boost/units/metric/atmosphere_base_unit.html +doc/html/boost/units/metric/bar_base_unit.html +doc/html/boost/units/metric/barn_base_unit.html +doc/html/boost/units/metric/hectare_base_unit.html +doc/html/boost/units/metric/knot_base_unit.html +doc/html/boost/units/metric/liter_base_unit.html +doc/html/boost/units/metric/mmHg_base_unit.html +doc/html/BOOST_UNITS_METRIC_PREFIX_id1412506.html +doc/html/boost/units/metric/torr_base_unit.html +doc/html/boost/units/multiply_typeof_helper.html +doc/html/boost/units/multiply_typeof_helper__id1398287.html +doc/html/boost/units/multiply_typeof_helper__id1398371.html +doc/html/boost/units/multiply_typeof_helper__id1398456.html +doc/html/boost/units/multiply_typeof_helper__id1398502.html +doc/html/BOOST_UNITS_NO_COMPILER_CHECK.html +doc/html/boost/units/operator_id1395646.html +doc/html/boost/units/operator_id1398549.html +doc/html/boost/units/operator/_id1398600.html +doc/html/boost/units/operator_id1398652.html +doc/html/boost/units/operator/_id1398704.html +doc/html/boost/units/operator_id1398756.html +doc/html/boost/units/operator_id1398816.html +doc/html/boost/units/plane_angle_base_dimension.html +doc/html/boost/units/power_typeof_helper.html +doc/html/boost/units/power_typeof_helper_uni_id1402946.html +doc/html/boost/units/pow_id1393460.html +doc/html/boost/units/pow_id1399685.html +doc/html/boost_units/Quantities.html +doc/html/boost/units/quantity_BOOST_UNITS_DI_id1400261.html +doc/html/boost/units/quantity.html +doc/html/boost_units/Quick_Start.html +doc/html/boost/units/reduce_unit.html +doc/html/boost/units/reduce_unit_unit_Dim__S_id1402916.html +doc/html/boost_units/Reference.html +doc/html/boost_units/ReleaseNotes.html +doc/html/BOOST_UNITS_REQUIRE_LAYOUT_COMPATIBILITY.html +doc/html/boost/units/revolution/revolution.html +doc/html/boost/units/revolution/revolutions.html +doc/html/boost/units/root.html +doc/html/boost/units/root_typeof_helper.html +doc/html/boost/units/root_typeof_helper_unit_id1403046.html +doc/html/boost/units/scaled_base_unit.html +doc/html/boost/units/scale.html +doc/html/boost/units/si/ampere_base_unit.html +doc/html/boost/units/si/ampere.html +doc/html/boost/units/si/amperes.html +doc/html/boost/units/si/becquerel.html +doc/html/boost/units/si/becquerels.html +doc/html/boost/units/si/candela_base_unit.html +doc/html/boost/units/si/candela.html +doc/html/boost/units/si/candelas.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1405887.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1406032.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1406181.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1406571.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1406842.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1407596.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1407929.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1408347.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1409127.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1409760.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1409998.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id1410506.html +doc/html/boost/units/si/coulomb.html +doc/html/boost/units/si/coulombs.html +doc/html/boost/units/si/cubic_meter.html +doc/html/boost/units/si/cubic_meters.html +doc/html/boost/units/si/cubic_metre.html +doc/html/boost/units/si/cubic_metres.html +doc/html/boost/units/si/farad.html +doc/html/boost/units/si/farads.html +doc/html/boost/units/si/gray.html +doc/html/boost/units/si/grays.html +doc/html/boost/units/si/henry.html +doc/html/boost/units/si/henrys.html +doc/html/boost/units/si/hertz.html +doc/html/boost/units/si/joule.html +doc/html/boost/units/si/joules.html +doc/html/boost/units/si/katal.html +doc/html/boost/units/si/katals.html +doc/html/boost/units/si/kelvin_base_unit.html +doc/html/boost/units/si/kelvin.html +doc/html/boost/units/si/kelvins.html +doc/html/boost/units/si/kilogram.html +doc/html/boost/units/si/kilogramme.html +doc/html/boost/units/si/kilogramme_per_cubic_metre.html +doc/html/boost/units/si/kilogramme_per_square_m_id1412699.html +doc/html/boost/units/si/kilogrammes.html +doc/html/boost/units/si/kilogrammes_per_cubic_m_id1412022.html +doc/html/boost/units/si/kilogrammes_per_square__id1412708.html +doc/html/boost/units/si/kilogram_per_cubic_meter.html +doc/html/boost/units/si/kilogram_per_square_meter.html +doc/html/boost/units/si/kilograms.html +doc/html/boost/units/si/kilograms_per_cubic_meter.html +doc/html/boost/units/si/kilograms_per_square_meter.html +doc/html/boost/units/si/lumen.html +doc/html/boost/units/si/lumens.html +doc/html/boost/units/si/lux.html +doc/html/boost/units/si/meter_base_unit.html +doc/html/boost/units/si/meter.html +doc/html/boost/units/si/meter_per_second.html +doc/html/boost/units/si/meter_per_second_squared.html +doc/html/boost/units/si/meters.html +doc/html/boost/units/si/meters_per_second.html +doc/html/boost/units/si/meters_per_second_squared.html +doc/html/boost/units/si/metre.html +doc/html/boost/units/si/metre_per_second.html +doc/html/boost/units/si/metre_per_second_squared.html +doc/html/boost/units/si/metres.html +doc/html/boost/units/si/metres_per_second.html +doc/html/boost/units/si/metres_per_second_squared.html +doc/html/boost/units/si/mho.html +doc/html/boost/units/si/mhos.html +doc/html/boost/units/si/mole_base_unit.html +doc/html/boost/units/si/mole.html +doc/html/boost/units/si/moles.html +doc/html/boost/units/si/newton.html +doc/html/boost/units/si/newton_meter.html +doc/html/boost/units/si/newton_meters.html +doc/html/boost/units/si/newton_per_meter.html +doc/html/boost/units/si/newtons.html +doc/html/boost/units/si/newtons_per_meter.html +doc/html/boost/units/si/ohm.html +doc/html/boost/units/si/ohms.html +doc/html/boost/units/si/pascal.html +doc/html/boost/units/si/pascals.html +doc/html/boost/units/si/radian.html +doc/html/boost/units/si/radian_per_second.html +doc/html/boost/units/si/radians.html +doc/html/boost/units/si/radians_per_second.html +doc/html/boost/units/si/reciprocal_meter.html +doc/html/boost/units/si/reciprocal_meters.html +doc/html/boost/units/si/reciprocal_metre.html +doc/html/boost/units/si/reciprocal_metres.html +doc/html/boost/units/si/second_base_unit.html +doc/html/boost/units/si/second.html +doc/html/boost/units/si/seconds.html +doc/html/boost/units/si/siemen.html +doc/html/boost/units/si/siemens.html +doc/html/boost/units/si/sievert.html +doc/html/boost/units/si/sieverts.html +doc/html/boost/units/si/square_meter.html +doc/html/boost/units/si/square_meters.html +doc/html/boost/units/si/square_metre.html +doc/html/boost/units/si/square_metres.html +doc/html/boost/units/si/steradian.html +doc/html/boost/units/si/steradians.html +doc/html/boost/units/si/tesla.html +doc/html/boost/units/si/teslas.html +doc/html/boost/units/si/volt.html +doc/html/boost/units/si/volts.html +doc/html/boost/units/si/watt.html +doc/html/boost/units/si/watts.html +doc/html/boost/units/si/weber.html +doc/html/boost/units/si/webers.html +doc/html/boost/units/solid_angle_base_dimension.html +doc/html/boost/units/static_abs.html +doc/html/BOOST_UNITS_STATIC_CONSTANT.html +doc/html/boost/units/static_power.html +doc/html/boost/units/static_rational.html +doc/html/boost/units/static_root.html +doc/html/boost/units/subtract_typeof_helper.html +doc/html/boost/units/subtract_typeof_helper__id1400974.html +doc/html/boost/units/subtract_typeof_helper__id1401024.html +doc/html/boost/units/temperature_base_dimension.html +doc/html/boost/units/temperature/celsius_base_unit.html +doc/html/boost/units/temperature/fahrenheit_base_unit.html +doc/html/boost/units/time_base_dimension.html +doc/html/boost_units/TODO.html +doc/html/boost/units/unary_minus_typeof_helper.html +doc/html/boost/units/unary_plus_typeof_helper.html +doc/html/boost/units/unit.html +doc/html/boost_units/Units.html +doc/html/boost/units/us/pint_base_unit.html +doc/html/boost/units/us/pound_base_unit.html +doc/html/boost/units/us/pound_force_base_unit.html +doc/html/boost/units/us/yard_base_unit.html +doc/html/boost_units/Utilities.html +doc/html/boost/unordered_map.html +doc/html/boost/unordered_multimap.html +doc/html/boost/unordered_multiset.html +doc/html/boost/unordered_set.html +doc/html/boost/unwrap_recursive_wrapper.html +doc/html/boost/unwrap_reference.html +doc/html/BOOST_VARIANT_ENUM_PARAMS.html +doc/html/BOOST_VARIANT_ENUM_SHIFTED_PARAMS.html +doc/html/boost/variant.html +doc/html/BOOST_VARIANT_LIMIT_TYPES.html +doc/html/BOOST_VARIANT_NO_FULL_RECURSIVE_VARIANT_SUPPORT.html +doc/html/BOOST_VARIANT_NO_REFERENCE_SUPPORT.html +doc/html/BOOST_VARIANT_NO_TYPE_SEQUENCE_SUPPORT.html +doc/html/boost/visit_each.html +doc/html/boost/visitor_ptr.html +doc/html/boost/visitor_ptr_t.html +doc/html/boost/xpressive/a1.html +doc/html/boost/xpressive/a2.html +doc/html/boost/xpressive/a3.html +doc/html/boost/xpressive/a4.html +doc/html/boost/xpressive/a5.html +doc/html/boost/xpressive/a6.html +doc/html/boost/xpressive/a7.html +doc/html/boost/xpressive/a8.html +doc/html/boost/xpressive/a9.html +doc/html/boost_xpressive/acknowledgments.html +doc/html/boost/xpressive/after.html +doc/html/boost/xpressive/alnum.html +doc/html/boost/xpressive/alpha.html +doc/html/boost/xpressive/as_id1482124.html +doc/html/boost/xpressive/as_xpr.html +doc/html/boost/xpressive/as_xpr_id1486230.html +doc/html/boost/xpressive/back.html +doc/html/boost/xpressive/basic_regex.html +doc/html/boost/xpressive/before.html +doc/html/boost/xpressive/_b.html +doc/html/boost/xpressive/blank.html +doc/html/boost/xpressive/bol.html +doc/html/boost/xpressive/BOOST_XPRESSIVE_GLOBAL__id1486043.html +doc/html/boost/xpressive/bos.html +doc/html/boost/xpressive/bow.html +doc/html/boost/xpressive/by_ref.html +doc/html/boost/xpressive/check.html +doc/html/boost/xpressive/cntrl.html +doc/html/boost/xpressive/const_cast_id1482206.html +doc/html/boost/xpressive/cpp_regex_traits.html +doc/html/boost/xpressive/cref_id1482281.html +doc/html/boost/xpressive/c_regex_traits.html +doc/html/boost/xpressive/_d.html +doc/html/boost/xpressive/digit.html +doc/html/boost/xpressive/dynamic_cast_id1482179.html +doc/html/boost/xpressive/eol.html +doc/html/boost/xpressive/eos.html +doc/html/boost/xpressive/eow.html +doc/html/boost/xpressive/first.html +doc/html/boost/xpressive/front.html +doc/html/boost/xpressive/function.html +doc/html/boost/xpressive/graph.html +doc/html/boost/xpressive/has_fold_case_cpp_regex_id1490189.html +doc/html/boost/xpressive/has_fold_case_c_regex_t_id1489409.html +doc/html/boost/xpressive/has_fold_case.html +doc/html/BOOST_XPRESSIVE_HAS_MS_STACK_GUARD.html +doc/html/boost/xpressive/_.html +doc/html/boost/xpressive/icase.html +doc/html/boost/xpressive/imbue.html +doc/html/boost/xpressive/inf.html +doc/html/boost/xpressive/insert.html +doc/html/boost/xpressive/keep.html +doc/html/boost/xpressive/length.html +doc/html/boost/xpressive/let.html +doc/html/boost/xpressive/_ln.html +doc/html/boost/xpressive/local.html +doc/html/boost/xpressive/lower.html +doc/html/boost/xpressive/make_pair.html +doc/html/boost/xpressive/mark_tag.html +doc/html/boost/xpressive/matched.html +doc/html/boost/xpressive/match_results.html +doc/html/boost/xpressive/_n.html +doc/html/boost/xpressive/nil.html +doc/html/boost/xpressive/null_regex_traits.html +doc/html/boost/xpressive/op/as.html +doc/html/boost/xpressive/op/back.html +doc/html/boost/xpressive/op/const_cast_.html +doc/html/boost/xpressive/op/construct.html +doc/html/boost/xpressive/op/dynamic_cast_.html +doc/html/boost/xpressive/operator_id1487465.html +doc/html/boost/xpressive/op/first.html +doc/html/boost/xpressive/op/front.html +doc/html/boost/xpressive/op/insert.html +doc/html/boost/xpressive/op/length.html +doc/html/boost/xpressive/op/make_pair.html +doc/html/boost/xpressive/op/matched.html +doc/html/boost/xpressive/op/pop_back.html +doc/html/boost/xpressive/op/pop_front.html +doc/html/boost/xpressive/op/pop.html +doc/html/boost/xpressive/op/push_back.html +doc/html/boost/xpressive/op/push_front.html +doc/html/boost/xpressive/op/push.html +doc/html/boost/xpressive/op/second.html +doc/html/boost/xpressive/op/static_cast_.html +doc/html/boost/xpressive/op/str.html +doc/html/boost/xpressive/op/throw_.html +doc/html/boost/xpressive/optional_id1486344.html +doc/html/boost/xpressive/op/top.html +doc/html/boost/xpressive/placeholder.html +doc/html/boost/xpressive/pop_back.html +doc/html/boost/xpressive/pop_front.html +doc/html/boost/xpressive/pop.html +doc/html/boost/xpressive/print.html +doc/html/boost/xpressive/punct.html +doc/html/boost/xpressive/push_back.html +doc/html/boost/xpressive/push_front.html +doc/html/boost/xpressive/push.html +doc/html/boost/xpressive/range.html +doc/html/boost/xpressive/reference.html +doc/html/boost/xpressive/ref_id1482257.html +doc/html/boost/xpressive/regex_compiler.html +doc/html/boost/xpressive/regex_constants/error_type.html +doc/html/boost/xpressive/regex_constants/match_flag_type.html +doc/html/boost/xpressive/regex_constants/syntax_option_type.html +doc/html/boost/xpressive/regex_error.html +doc/html/boost/xpressive/regex_id_filter_predicate.html +doc/html/boost/xpressive/regex_iterator.html +doc/html/boost/xpressive/regex_match.html +doc/html/boost/xpressive/regex_replace.html +doc/html/boost/xpressive/regex_search.html +doc/html/boost/xpressive/regex_token_iterator.html +doc/html/boost/xpressive/regex_traits.html +doc/html/boost/xpressive/regex_traits_version_1_tag.html +doc/html/boost/xpressive/regex_traits_version_2_tag.html +doc/html/boost/xpressive/repeat_id1486374.html +doc/html/boost/xpressive/second.html +doc/html/boost/xpressive/self.html +doc/html/boost/xpressive/set.html +doc/html/boost/xpressive/_s.html +doc/html/boost/xpressive/skip.html +doc/html/boost/xpressive/space.html +doc/html/boost/xpressive/static_cast_id1482152.html +doc/html/boost/xpressive/str.html +doc/html/boost/xpressive/sub_match.html +doc/html/boost/xpressive/swap_id1479206.html +doc/html/boost/xpressive/top.html +doc/html/boost/xpressive/upper.html +doc/html/boost/xpressive/val.html +doc/html/boost/xpressive/value.html +doc/html/boost/xpressive/_w.html +doc/html/boost/xpressive/xdigit.html +doc/html/CallableTransform.html +doc/html/CopyConstructible.html +doc/html/date_time/date_time_io.html +doc/html/date_time/details.html +doc/html/date_time/doxy.html +doc/html/date_time/examples/general_usage_examples.html +doc/html/date_time/examples.html +doc/html/date_time/gregorian.html +doc/html/date_time.html +doc/html/date_time/local_time.html +doc/html/date_time/posix_time.html +doc/html/date_time/serialization.html +doc/html/DefaultConstructible.html +doc/html/docutils.css +doc/html/EqualityComparable.html +doc/html/foreach/extensibility.html +doc/html/foreach/history_and_acknowledgements.html +doc/html/foreach.html +doc/html/foreach/pitfalls.html +doc/html/foreach/portability.html +doc/html/ForwardIterator.html +doc/html/function/faq.html +doc/html/function/history.html +doc/html/function.html +doc/html/function/misc.html +doc/html/function/reference.html +doc/html/function/testsuite.html +doc/html/function/tutorial.html +doc/html/hash/acknowledgements.html +doc/html/hash/changes.html +doc/html/hash/combine.html +doc/html/hash/custom.html +doc/html/hash/disable.html +doc/html/hash.html +doc/html/hash/links.html +doc/html/hash/portability.html +doc/html/hash/reference.html +doc/html/hash/tutorial.html +doc/html/id313989-bb.html +doc/html/images/caution.png +doc/html/images/home.png +doc/html/images/important.png +doc/html/images/next_disabled.png +doc/html/images/next.png +doc/html/images/note.png +doc/html/images/prev_disabled.png +doc/html/images/prev.png +doc/html/images/smiley.png +doc/html/images/tip.png +doc/html/images/up.png +doc/html/images/warning.png +doc/html/index.html +doc/html/InputIterator.html +doc/html/interprocess/acknowledgements_notes.html +doc/html/interprocess/allocators_containers.html +doc/html/interprocess/architecture.html +doc/html/interprocess/customizing_interprocess.html +doc/html/interprocess.html +doc/html/interprocess/interprocess_smart_ptr.html +doc/html/interprocess/managed_memory_segments.html +doc/html/interprocess/offset_ptr.html +doc/html/interprocess/quick_guide.html +doc/html/interprocess/sharedmemorybetweenprocesses.html +doc/html/interprocess/some_basic_explanations.html +doc/html/interprocess/streams.html +doc/html/interprocess/synchronization_mechanisms.html +doc/html/intrusive/acknowledgements.html +doc/html/intrusive/advanced_lookups_insertions.html +doc/html/intrusive/any_hooks.html +doc/html/intrusive/auto_unlink_hooks.html +doc/html/intrusive/avl_set_multiset.html +doc/html/intrusive/clone_from.html +doc/html/intrusive/concepts.html +doc/html/intrusive/concepts_summary.html +doc/html/intrusive/design_notes.html +doc/html/intrusive/erasing_and_disposing.html +doc/html/intrusive.html +doc/html/intrusive/intrusive_vs_nontrusive.html +doc/html/intrusive/license_notices.html +doc/html/intrusive/list.html +doc/html/intrusive/node_algorithms.html +doc/html/intrusive/obtaining_iterators_from_values.html +doc/html/intrusive/obtaining_same_type_reducing_space.html +doc/html/intrusive/performance.html +doc/html/intrusive/presenting_containers.html +doc/html/intrusive/reference.html +doc/html/intrusive/references.html +doc/html/intrusive/release_notes.html +doc/html/intrusive/safe_hook.html +doc/html/intrusive/set_multiset.html +doc/html/intrusive/sg_set_multiset.html +doc/html/intrusive/slist.html +doc/html/intrusive/splay_set_multiset.html +doc/html/intrusive/tested_compilers.html +doc/html/intrusive/thread_safety.html +doc/html/intrusive/treap_set_multiset.html +doc/html/intrusive/unordered_set_unordered_multiset.html +doc/html/intrusive/usage.html +doc/html/intrusive/usage_when.html +doc/html/intrusive/using_smart_pointers.html +doc/html/intrusive/value_traits.html +doc/html/jam/building.html +doc/html/jam/history.html +doc/html/jam.html +doc/html/jam/usage.html +doc/html/lambda/extending.html +doc/html/lambda/getting_started.html +doc/html/lambda.html +doc/html/lambda/le_in_details.html +doc/html/lambda/s03.html +doc/html/lambda/s07.html +doc/html/lambda/s08.html +doc/html/lambda/s09.html +doc/html/lambda/s10.html +doc/html/lambda/using_library.html +doc/html/LessThanComparable.html +doc/html/libraries.html +doc/html/minimal.css +doc/html/mpi/acknowledge.html +doc/html/MPICH_IGNORE_CXX_SEEK.html +doc/html/mpi/design.html +doc/html/mpi/getting_started.html +doc/html/mpi/history.html +doc/html/mpi.html +doc/html/mpi/performance.html +doc/html/mpi/python.html +doc/html/mpi/reference.html +doc/html/mpi/tutorial.html +doc/html/ObjectTransform.html +doc/html/OutputIterator.html +doc/html/PolymorphicFunctionObject.html +doc/html/PrimitiveTransform.html +doc/html/program_options/design.html +doc/html/program_options/howto.html +doc/html/program_options.html +doc/html/program_options/overview.html +doc/html/program_options/reference.html +doc/html/program_options/s06.html +doc/html/program_options/tutorial.html +doc/html/property_tree/appendices.html +doc/html/property_tree.html +doc/html/property_tree/reference.html +doc/html/proto/appendices.html +doc/html/proto.html +doc/html/proto/reference.html +doc/html/proto/users_guide.html +doc/html/quickbook/change_log.html +doc/html/quickbook/editors.html +doc/html/quickbook/faq.html +doc/html/quickbook.html +doc/html/quickbook/install.html +doc/html/quickbook/ref.html +doc/html/quickbook/syntax.html +doc/html/RandomAccessIterator.html +doc/html/ref/ack.html +doc/html/reference.html +doc/html/ref.html +doc/html/ref/reference.html +doc/html/signals2/api_changes.html +doc/html/signals2/examples.html +doc/html/signals2/faq.html +doc/html/signals2.html +doc/html/signals2/rationale.html +doc/html/signals2/reference.html +doc/html/signals2/tests.html +doc/html/signals2/thread-safety.html +doc/html/signals2/tutorial.html +doc/html/signals.html +doc/html/signals/reference.html +doc/html/signals/s04.html +doc/html/signals/s05.html +doc/html/signals/s06.html +doc/html/signals/tests.html +doc/html/signals/tutorial.html +doc/html/SignedInteger.html +doc/html/std/numeric_limits_boost_un_id1398882.html +doc/html/string_algo/concept.html +doc/html/string_algo/credits.html +doc/html/string_algo/design.html +doc/html/string_algo/env.html +doc/html/string_algo.html +doc/html/string_algo/quickref.html +doc/html/string_algo/rationale.html +doc/html/string_algo/reference.html +doc/html/string_algo/release_notes.html +doc/html/string_algo/usage.html +doc/html/thread/acknowledgements.html +doc/html/thread/changes.html +doc/html/thread.html +doc/html/thread/synchronization.html +doc/html/thread/thread_local_storage.html +doc/html/thread/thread_management.html +doc/html/thread/time.html +doc/html/tools.html +doc/html/Transform.html +doc/html/tribool.html +doc/html/tribool/reference.html +doc/html/tribool/tests.html +doc/html/tribool/tutorial.html +doc/html/typeof/ackn.html +doc/html/typeof/cont.html +doc/html/typeof.html +doc/html/typeof/other.html +doc/html/typeof/refe.html +doc/html/typeof/tuto.html +doc/html/unordered/bibliography.html +doc/html/unordered/buckets.html +doc/html/unordered/changes.html +doc/html/unordered/comparison.html +doc/html/unordered/hash_equality.html +doc/html/unordered.html +doc/html/unordered/rationale.html +doc/html/unordered/reference.html +doc/html/variant/design.html +doc/html/variant.html +doc/html/variant/misc.html +doc/html/variant/reference.html +doc/html/variant/refs.html +doc/html/variant/tutorial.html +doc/html/xpressive/appendices.html +doc/html/xpressive.html +doc/html/xpressive/reference.html +doc/html/xpressive/user_s_guide.html +doc/images/valid-html401.png +doc/src/images/callouts/1.png +doc/src/images/callouts/2.png +doc/src/images/callouts/3.png +doc/src/images/callouts/4.png +doc/src/images/callouts/5.png +doc/src/images/callouts/6.png +index.htm +index.html +libs/accumulators/index.html +libs/algorithm/minmax/doc/minmax_benchs.html +libs/algorithm/minmax/doc/minmax_synopsis.html +libs/algorithm/minmax/example/minmax_ex.cpp +libs/algorithm/minmax/example/minmax_timer.cpp +libs/algorithm/minmax/index.html +libs/algorithm/string/index.html +libs/any/index.html +libs/array/index.html +libs/asio/index.html +libs/assign/doc/email_example.html +libs/assign/doc/index.html +libs/assign/doc/multi_index_container.html +libs/assign/doc/my_vector_example.html +libs/assign/doc/style.css +libs/assign/index.html +libs/assign/test/array.cpp +libs/assign/test/list_inserter.cpp +libs/assign/test/list_of.cpp +libs/assign/test/list_of_workaround.cpp +libs/assign/test/std.cpp +libs/bimap/doc/html/boost_bimap/acknowledgements.html +libs/bimap/doc/html/boost_bimap/bimap_and_boost/boost_libraries_that_work_well_with_boost_bimap.html +libs/bimap/doc/html/boost_bimap/bimap_and_boost/dependencies.html +libs/bimap/doc/html/boost_bimap/bimap_and_boost.html +libs/bimap/doc/html/boost_bimap/compiler_specifics.html +libs/bimap/doc/html/boost_bimap/examples.html +libs/bimap/doc/html/boost_bimap/examples/mighty_bimap.html +libs/bimap/doc/html/boost_bimap/examples/multiindex_to_bimap_path___bidirectional_map.html +libs/bimap/doc/html/boost_bimap/examples/multiindex_to_bimap_path___hashed_indices.html +libs/bimap/doc/html/boost_bimap/examples/simple_bimap.html +libs/bimap/doc/html/boost_bimap/future_work.html +libs/bimap/doc/html/boost_bimap/history.html +libs/bimap/doc/html/boost_bimap/history/multiindex_and_bimap.html +libs/bimap/doc/html/boost_bimap/introduction.html +libs/bimap/doc/html/boost_bimap/one_minute_tutorial.html +libs/bimap/doc/html/boost_bimap/performance.html +libs/bimap/doc/html/boost_bimap/rationale/additional_features.html +libs/bimap/doc/html/boost_bimap/rationale/code.html +libs/bimap/doc/html/boost_bimap/rationale.html +libs/bimap/doc/html/boost_bimap/rationale/the_student_and_the_mentor.html +libs/bimap/doc/html/boost_bimap/reference/bimap_reference.html +libs/bimap/doc/html/boost_bimap/reference.html +libs/bimap/doc/html/boost_bimap/reference/list_of_reference.html +libs/bimap/doc/html/boost_bimap/reference/set_of_reference.html +libs/bimap/doc/html/boost_bimap/reference/unconstrained_set_of_reference.html +libs/bimap/doc/html/boost_bimap/reference/unordered_set_of_reference.html +libs/bimap/doc/html/boost_bimap/reference/vector_of_reference.html +libs/bimap/doc/html/boost_bimap/release_notes.html +libs/bimap/doc/html/boost_bimap/test_suite.html +libs/bimap/doc/html/boost_bimap/the_tutorial/additional_information.html +libs/bimap/doc/html/boost_bimap/the_tutorial/bimaps_with_user_defined_names.html +libs/bimap/doc/html/boost_bimap/the_tutorial/complete_instantiation_scheme.html +libs/bimap/doc/html/boost_bimap/the_tutorial/controlling_collection_types.html +libs/bimap/doc/html/boost_bimap/the_tutorial/differences_with_standard_maps.html +libs/bimap/doc/html/boost_bimap/the_tutorial/discovering_the_bimap_framework.html +libs/bimap/doc/html/boost_bimap/the_tutorial.html +libs/bimap/doc/html/boost_bimap/the_tutorial/the_collection_of_relations_type.html +libs/bimap/doc/html/boost_bimap/the_tutorial/unconstrained_sets.html +libs/bimap/doc/html/boost_bimap/the_tutorial/useful_functions.html +libs/bimap/doc/html/boostbook.css +libs/bimap/doc/html/images/bimap/bimap.structures.png +libs/bimap/doc/html/images/bimap/boost.bimap.logo.png +libs/bimap/doc/html/images/bimap/collection.type.of.relation.png +libs/bimap/doc/html/images/bimap/extended.mapping.framework.png +libs/bimap/doc/html/images/bimap/miBimapFramework.png +libs/bimap/doc/html/images/bimap/more.bimap.structures.png +libs/bimap/doc/html/images/bimap/relation.and.pair.png +libs/bimap/doc/html/images/bimap/relation.and.pair.with.info.png +libs/bimap/doc/html/images/bimap/relation.png +libs/bimap/doc/html/images/bimap/simple.bimap.png +libs/bimap/doc/html/images/bimap/standard.mapping.framework.png +libs/bimap/doc/html/images/bimap/tagged.png +libs/bimap/doc/html/images/callouts/1.png +libs/bimap/doc/html/images/callouts/2.png +libs/bimap/doc/html/images/callouts/3.png +libs/bimap/doc/html/images/extern/googlesoc.png +libs/bimap/doc/html/images/people/hector.png +libs/bimap/doc/html/images/people/joaquin.png +libs/bimap/doc/html/images/people/mafalda.png +libs/bimap/doc/html/images/people/matias.png +libs/bimap/doc/html/index.html +libs/bimap/example/at_function_examples.cpp +libs/bimap/example/bimap_and_boost/assign.cpp +libs/bimap/example/bimap_and_boost/foreach.cpp +libs/bimap/example/bimap_and_boost/lambda.cpp +libs/bimap/example/bimap_and_boost/property_map.cpp +libs/bimap/example/bimap_and_boost/range.cpp +libs/bimap/example/bimap_and_boost/serialization.cpp +libs/bimap/example/bimap_and_boost/typeof.cpp +libs/bimap/example/bimap_and_boost/xpressive.cpp +libs/bimap/example/mighty_bimap.cpp +libs/bimap/example/mi_to_b_path/bidirectional_map.cpp +libs/bimap/example/mi_to_b_path/hashed_indices.cpp +libs/bimap/example/mi_to_b_path/mi_bidirectional_map.cpp +libs/bimap/example/mi_to_b_path/mi_hashed_indices.cpp +libs/bimap/example/mi_to_b_path/tagged_bidirectional_map.cpp +libs/bimap/example/population_bimap.cpp +libs/bimap/example/projection.cpp +libs/bimap/example/repetitions_counter.cpp +libs/bimap/example/simple_bimap.cpp +libs/bimap/example/standard_map_comparison.cpp +libs/bimap/example/step_by_step.cpp +libs/bimap/example/tagged_simple_bimap.cpp +libs/bimap/example/tutorial_info_hook.cpp +libs/bimap/example/tutorial_modify_and_replace.cpp +libs/bimap/example/tutorial_range.cpp +libs/bimap/example/unconstrained_collection.cpp +libs/bimap/example/user_defined_names.cpp +libs/bimap/index.html +libs/bimap/test/compile_fail/test_bimap_info_1.cpp +libs/bimap/test/compile_fail/test_bimap_info_2.cpp +libs/bimap/test/compile_fail/test_bimap_info_3.cpp +libs/bimap/test/compile_fail/test_bimap_mutable_1.cpp +libs/bimap/test/compile_fail/test_bimap_mutable_2.cpp +libs/bimap/test/compile_fail/test_bimap_mutable_3.cpp +libs/bimap/test/test_bimap_assign.cpp +libs/bimap/test/test_bimap_convenience_header.cpp +libs/bimap/test/test_bimap_extra.cpp +libs/bimap/test/test_bimap_info.cpp +libs/bimap/test/test_bimap_lambda.cpp +libs/bimap/test/test_bimap_list_of.cpp +libs/bimap/test/test_bimap_modify.cpp +libs/bimap/test/test_bimap_multiset_of.cpp +libs/bimap/test/test_bimap_operator_bracket.cpp +libs/bimap/test/test_bimap_ordered.cpp +libs/bimap/test/test_bimap_project.cpp +libs/bimap/test/test_bimap_property_map.cpp +libs/bimap/test/test_bimap_sequenced.cpp +libs/bimap/test/test_bimap_serialization.cpp +libs/bimap/test/test_bimap_set_of.cpp +libs/bimap/test/test_bimap_unconstrained.cpp +libs/bimap/test/test_bimap_unordered.cpp +libs/bimap/test/test_bimap_unordered_multiset_of.cpp +libs/bimap/test/test_bimap_unordered_set_of.cpp +libs/bimap/test/test_bimap_vector_of.cpp +libs/bimap/test/test_mutant.cpp +libs/bimap/test/test_mutant_relation.cpp +libs/bimap/test/test_structured_pair.cpp +libs/bimap/test/test_tagged.cpp +libs/bind/bind_as_compose.cpp +libs/bind/bind.html +libs/bind/bind_visitor.cpp +libs/bind/index.html +libs/bind/mem_fn.html +libs/bind/ref.html +libs/bind/test/bind_fastcall_mf_test.cpp +libs/bind/test/bind_fastcall_test.cpp +libs/bind/test/bind_stdcall_mf_test.cpp +libs/bind/test/bind_stdcall_test.cpp +libs/bind/test/bind_test.cpp +libs/bind/test/mem_fn_derived_test.cpp +libs/bind/test/mem_fn_fastcall_test.cpp +libs/bind/test/mem_fn_stdcall_test.cpp +libs/bind/test/mem_fn_test.cpp +libs/bind/test/mem_fn_void_test.cpp +libs/circular_buffer/doc/circular_buffer.html +libs/circular_buffer/doc/circular_buffer.png +libs/circular_buffer/doc/space_optimized.html +libs/circular_buffer/doc/space_optimized.png +libs/circular_buffer/index.html +libs/circular_buffer/test/bounded_buffer_comparison.cpp +libs/circular_buffer/test/soft_iterator_invalidation.cpp +libs/compatibility/generate_cpp_c_headers.py +libs/compatibility/index.html +libs/compose/index.htm +libs/concept_check/bad_error_eg.cpp +libs/concept_check/bibliography.htm +libs/concept_check/concept_check.htm +libs/concept_check/concept_covering.htm +libs/concept_check/creating_concepts.htm +libs/concept_check/implementation.htm +libs/concept_check/index.html +libs/concept_check/prog_with_concepts.htm +libs/concept_check/reference.htm +libs/concept_check/stl_concept_covering.cpp +libs/concept_check/using_concept_check.htm +libs/config/config.htm +libs/config/doc/html/boost_config/acknowledgements.html +libs/config/doc/html/boost_config/boost_macro_reference.html +libs/config/doc/html/boost_config/guidelines_for_boost_authors.html +libs/config/doc/html/boost_config/rationale.html +libs/config/doc/html/index.html +libs/config/index.html +libs/config/test/limits_test.cpp +libs/config/tools/configure.in +libs/conversion/cast.htm +libs/conversion/cast_test.cpp +libs/conversion/index.html +libs/conversion/lexical_cast.htm +libs/conversion/lexical_cast_test.cpp +libs/crc/crc_example.cpp +libs/crc/crc.html +libs/crc/index.html +libs/crc/test/crc_test.cpp +libs/date_time/doc/index.html +libs/date_time/doc/time_duration_inherit.png +libs/date_time/index.html +libs/disjoint_sets/bibliography.html +libs/disjoint_sets/disjoint_sets.html +libs/dynamic_bitset/dynamic_bitset.html +libs/dynamic_bitset/example/example1.cpp +libs/dynamic_bitset/example/example2.cpp +libs/dynamic_bitset/example/example3.cpp +libs/exception/doc/boost_exception_all_hpp.html +libs/exception/doc/boost_exception_current_exception_cast_hpp.html +libs/exception/doc/boost_exception_diagnostic_information_hpp.html +libs/exception/doc/boost_exception_enable_current_exception_hpp.html +libs/exception/doc/boost_exception_enable_error_info_hpp.html +libs/exception/doc/boost_exception_errinfo_api_function_hpp.html +libs/exception/doc/boost_exception_errinfo_at_line_hpp.html +libs/exception/doc/boost_exception_errinfo_errno_hpp.html +libs/exception/doc/boost_exception_errinfo_file_handle_hpp.html +libs/exception/doc/boost_exception_errinfo_file_name_hpp.html +libs/exception/doc/boost_exception_errinfo_file_open_mode_hpp.html +libs/exception/doc/boost_exception_errinfo_nested_exception_hpp.html +libs/exception/doc/boost_exception_errinfo_type_info_name_hpp.html +libs/exception/doc/boost_exception_error_info_hpp.html +libs/exception/doc/boost_exception_exception_hpp.html +libs/exception/doc/boost_exception_get_error_info_hpp.html +libs/exception/doc/boost_exception_hpp.html +libs/exception/doc/boost-exception.html +libs/exception/doc/boost_exception_info_hpp.html +libs/exception/doc/boost_exception_info_tuple_hpp.html +libs/exception/doc/boost_exception_ptr_hpp.html +libs/exception/doc/boost_throw_exception_hpp.html +libs/exception/doc/BOOST_THROW_EXCEPTION.html +libs/exception/doc/configuration_macros.html +libs/exception/doc/copy_exception.html +libs/exception/doc/current_exception_cast.html +libs/exception/doc/current_exception_diagnostic_information.html +libs/exception/doc/current_exception.html +libs/exception/doc/diagnostic_information.html +libs/exception/doc/diagnostic_information_what.html +libs/exception/doc/enable_current_exception.html +libs/exception/doc/enable_error_info.html +libs/exception/doc/errinfo_api_function.html +libs/exception/doc/errinfo_at_line.html +libs/exception/doc/errinfo_errno.html +libs/exception/doc/errinfo_file_handle.html +libs/exception/doc/errinfo_file_name.html +libs/exception/doc/errinfo_file_open_mode.html +libs/exception/doc/errinfo_nested_exception.html +libs/exception/doc/errinfo_type_info_name.html +libs/exception/doc/error_info_error_info.html +libs/exception/doc/error_info.html +libs/exception/doc/error_info_value.html +libs/exception/doc/error_info_value_type.html +libs/exception/doc/exception_constructors.html +libs/exception/doc/exception_destructor.html +libs/exception/doc/exception.html +libs/exception/doc/exception_operator_shl.html +libs/exception/doc/exception_ptr.html +libs/exception/doc/exception_types_as_simple_semantic_tags.html +libs/exception/doc/frequently_asked_questions.html +libs/exception/doc/functions.html +libs/exception/doc/get_error_info.html +libs/exception/doc/headers.html +libs/exception/doc/macros.html +libs/exception/doc/motivation.html +libs/exception/doc/original_exception_type.html +libs/exception/doc/page_idx.html +libs/exception/doc/reno.css +libs/exception/doc/rethrow_exception.html +libs/exception/doc/shade-l.png +libs/exception/doc/shade-r.png +libs/exception/doc/synopsis.html +libs/exception/doc/throw_exception.html +libs/exception/doc/tuple_operator_shl.html +libs/exception/doc/tutorial_diagnostic_information.html +libs/exception/doc/tutorial_enable_error_info.html +libs/exception/doc/tutorial_exception_ptr.html +libs/exception/doc/tutorial_transporting_data.html +libs/exception/doc/types.html +libs/exception/doc/unknown_exception.html +libs/exception/doc/using_virtual_inheritance_in_exception_types.html +libs/exception/doc/valid-css.png +libs/exception/doc/valid-xhtml.png +libs/filesystem/build/Jamfile.v2 +libs/filesystem/doc/design.htm +libs/filesystem/doc/do-list.htm +libs/filesystem/doc/faq.htm +libs/filesystem/doc/i18n.html +libs/filesystem/doc/index.htm +libs/filesystem/doc/portability_guide.htm +libs/filesystem/doc/reference.html +libs/filesystem/example/file_size.cpp +libs/filesystem/example/simple_ls.cpp +libs/filesystem/index.html +libs/filesystem/test/fstream_test.cpp +libs/filesystem/test/operations_test.cpp +libs/filesystem/test/path_test.cpp +libs/filesystem/test/wide_test.cpp +libs/flyweight/doc/acknowledgements.html +libs/flyweight/doc/examples.html +libs/flyweight/doc/future_work.html +libs/flyweight/doc/html.png +libs/flyweight/doc/index.html +libs/flyweight/doc/memory_gcc_344.png +libs/flyweight/doc/memory_msvc_80.png +libs/flyweight/doc/memory.png +libs/flyweight/doc/next.gif +libs/flyweight/doc/performance.html +libs/flyweight/doc/prev.gif +libs/flyweight/doc/reference/factories.html +libs/flyweight/doc/reference/flyweight.html +libs/flyweight/doc/reference/holders.html +libs/flyweight/doc/reference/index.html +libs/flyweight/doc/reference/key_value.html +libs/flyweight/doc/reference/locking.html +libs/flyweight/doc/reference/tags.html +libs/flyweight/doc/reference/tracking.html +libs/flyweight/doc/release_notes.html +libs/flyweight/doc/style.css +libs/flyweight/doc/tests.html +libs/flyweight/doc/time_gcc_344.png +libs/flyweight/doc/time_msvc_80.png +libs/flyweight/doc/tutorial/basics.html +libs/flyweight/doc/tutorial/configuration.html +libs/flyweight/doc/tutorial/extension.html +libs/flyweight/doc/tutorial/index.html +libs/flyweight/doc/tutorial/key_value.html +libs/flyweight/doc/tutorial/lambda_expressions.html +libs/flyweight/doc/tutorial/technical.html +libs/flyweight/doc/up.gif +libs/flyweight/example/basic.cpp +libs/flyweight/example/composite.cpp +libs/flyweight/example/custom_factory.cpp +libs/flyweight/example/fibonacci.cpp +libs/flyweight/example/html.cpp +libs/flyweight/example/key_value.cpp +libs/flyweight/example/perf.cpp +libs/flyweight/index.html +libs/flyweight/test/intermod_holder_dll.cpp +libs/flyweight/test/test_assoc_cont_factory.cpp +libs/flyweight/test/test_basic.cpp +libs/flyweight/test/test_custom_factory.cpp +libs/flyweight/test/test_init.cpp +libs/flyweight/test/test_intermod_holder.cpp +libs/flyweight/test/test_multictor.cpp +libs/flyweight/test/test_no_locking.cpp +libs/flyweight/test/test_no_tracking.cpp +libs/flyweight/test/test_set_factory.cpp +libs/foreach/index.html +libs/format/doc/choices.html +libs/format/doc/format.html +libs/format/example/sample_advanced.cpp +libs/format/example/sample_formats.cpp +libs/format/example/sample_new_features.cpp +libs/format/example/sample_userType.cpp +libs/format/index.html +libs/functional/binders.html +libs/functional/function_traits.html +libs/functional/hash/examples/books.cpp +libs/functional/hash/examples/point.cpp +libs/functional/hash/examples/portable.cpp +libs/functional/hash/index.html +libs/functional/index.html +libs/functional/mem_fun.html +libs/functional/negators.html +libs/functional/ptr_fun.html +libs/functional/test/function_test.cpp +libs/function/index.html +libs/function/test/allocator_test.cpp +libs/function/test/contains_test.cpp +libs/function/test/function_30.cpp +libs/function/test/function_arith_cxx98.cpp +libs/function/test/function_arith_portable.cpp +libs/function/test/function_n_test.cpp +libs/function/test/function_ref_cxx98.cpp +libs/function/test/function_ref_portable.cpp +libs/function/test/function_test.cpp +libs/function/test/function_test_fail1.cpp +libs/function/test/function_test_fail2.cpp +libs/function/test/lambda_test.cpp +libs/function/test/mem_fun_cxx98.cpp +libs/function/test/mem_fun_portable.cpp +libs/function/test/stateless_test.cpp +libs/function/test/std_bind_cxx98.cpp +libs/function/test/std_bind_portable.cpp +libs/function/test/sum_avg_cxx98.cpp +libs/function/test/sum_avg_portable.cpp +libs/function_types/doc/html/boost_functiontypes/about_tag_types.html +libs/function_types/doc/html/boost_functiontypes/acknowledgements.html +libs/function_types/doc/html/boost_functiontypes/introduction.html +libs/function_types/doc/html/boost_functiontypes/rationale.html +libs/function_types/doc/html/boost_functiontypes/reference/classification.html +libs/function_types/doc/html/boost_functiontypes/reference/decomposition.html +libs/function_types/doc/html/boost_functiontypes/reference.html +libs/function_types/doc/html/boost_functiontypes/reference/macros.html +libs/function_types/doc/html/boost_functiontypes/reference/synthesis.html +libs/function_types/doc/html/boost_functiontypes/reference/tag_types.html +libs/function_types/doc/html/boost_functiontypes/use_cases.html +libs/function_types/doc/html/index.html +libs/function_types/example/fast_mem_fn.hpp +libs/function_types/example/interface.hpp +libs/function_types/example/interpreter.hpp +libs/function_types/index.html +libs/fusion/doc/html/fusion/acknowledgements.html +libs/fusion/doc/html/fusion/adapted/adapt_assoc.html +libs/fusion/doc/html/fusion/adapted/adapt_struct.html +libs/fusion/doc/html/fusion/adapted/boost__array.html +libs/fusion/doc/html/fusion/adapted/boost__tuple.html +libs/fusion/doc/html/fusion/adapted.html +libs/fusion/doc/html/fusion/adapted/mpl_sequence.html +libs/fusion/doc/html/fusion/adapted/std__pair.html +libs/fusion/doc/html/fusion/algorithm.html +libs/fusion/doc/html/fusion/algorithm/iteration/functions/accumulate.html +libs/fusion/doc/html/fusion/algorithm/iteration/functions/fold.html +libs/fusion/doc/html/fusion/algorithm/iteration/functions/for_each.html +libs/fusion/doc/html/fusion/algorithm/iteration/functions.html +libs/fusion/doc/html/fusion/algorithm/iteration.html +libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions/accumulate.html +libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions/fold.html +libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions/for_each.html +libs/fusion/doc/html/fusion/algorithm/iteration/metafunctions.html +libs/fusion/doc/html/fusion/algorithm/query/functions/all.html +libs/fusion/doc/html/fusion/algorithm/query/functions/any.html +libs/fusion/doc/html/fusion/algorithm/query/functions/count.html +libs/fusion/doc/html/fusion/algorithm/query/functions/count_if.html +libs/fusion/doc/html/fusion/algorithm/query/functions/find.html +libs/fusion/doc/html/fusion/algorithm/query/functions/find_if.html +libs/fusion/doc/html/fusion/algorithm/query/functions.html +libs/fusion/doc/html/fusion/algorithm/query/functions/none.html +libs/fusion/doc/html/fusion/algorithm/query.html +libs/fusion/doc/html/fusion/algorithm/query/metafunctions/all.html +libs/fusion/doc/html/fusion/algorithm/query/metafunctions/any.html +libs/fusion/doc/html/fusion/algorithm/query/metafunctions/count.html +libs/fusion/doc/html/fusion/algorithm/query/metafunctions/count_if.html +libs/fusion/doc/html/fusion/algorithm/query/metafunctions/find.html +libs/fusion/doc/html/fusion/algorithm/query/metafunctions/find_if.html +libs/fusion/doc/html/fusion/algorithm/query/metafunctions.html +libs/fusion/doc/html/fusion/algorithm/query/metafunctions/none.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/clear.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/erase.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/erase_key.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/filter.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/filter_if.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/insert.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/insert_range.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/join.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/pop_back.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/pop_front.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/push_back.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/push_front.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/remove.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/remove_if.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/replace.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/replace_if.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/reverse.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/transform.html +libs/fusion/doc/html/fusion/algorithm/transformation/functions/zip.html +libs/fusion/doc/html/fusion/algorithm/transformation.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/clear.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/erase.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/erase_key.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/filter.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/filter_if.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/insert.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/insert_range.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/join.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/pop_back.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/pop_front.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/push_back.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/push_front.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/remove.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/remove_if.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/replace.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/replace_if.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/reverse.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/transform.html +libs/fusion/doc/html/fusion/algorithm/transformation/metafunctions/zip.html +libs/fusion/doc/html/fusion/change_log.html +libs/fusion/doc/html/fusion/container/cons.html +libs/fusion/doc/html/fusion/container/conversion/functions/as_list.html +libs/fusion/doc/html/fusion/container/conversion/functions/as_map.html +libs/fusion/doc/html/fusion/container/conversion/functions/as_set.html +libs/fusion/doc/html/fusion/container/conversion/functions/as_vector.html +libs/fusion/doc/html/fusion/container/conversion/functions.html +libs/fusion/doc/html/fusion/container/conversion.html +libs/fusion/doc/html/fusion/container/conversion/metafunctions/as_list.html +libs/fusion/doc/html/fusion/container/conversion/metafunctions/as_map.html +libs/fusion/doc/html/fusion/container/conversion/metafunctions/as_set.html +libs/fusion/doc/html/fusion/container/conversion/metafunctions/as_vector.html +libs/fusion/doc/html/fusion/container/conversion/metafunctions.html +libs/fusion/doc/html/fusion/container/generation/functions.html +libs/fusion/doc/html/fusion/container/generation/functions/list_tie.html +libs/fusion/doc/html/fusion/container/generation/functions/make_cons.html +libs/fusion/doc/html/fusion/container/generation/functions/make_list.html +libs/fusion/doc/html/fusion/container/generation/functions/make_map.html +libs/fusion/doc/html/fusion/container/generation/functions/make_set.html +libs/fusion/doc/html/fusion/container/generation/functions/make_vector.html +libs/fusion/doc/html/fusion/container/generation/functions/map_tie.html +libs/fusion/doc/html/fusion/container/generation/functions/tiers.html +libs/fusion/doc/html/fusion/container/generation/functions/vector_tie.html +libs/fusion/doc/html/fusion/container/generation.html +libs/fusion/doc/html/fusion/container/generation/metafunctions.html +libs/fusion/doc/html/fusion/container/generation/metafunctions/list_tie.html +libs/fusion/doc/html/fusion/container/generation/metafunctions/make_cons.html +libs/fusion/doc/html/fusion/container/generation/metafunctions/make_list.html +libs/fusion/doc/html/fusion/container/generation/metafunctions/make_map.html +libs/fusion/doc/html/fusion/container/generation/metafunctions/make_set.html +libs/fusion/doc/html/fusion/container/generation/metafunctions/make_vector.html +libs/fusion/doc/html/fusion/container/generation/metafunctions/map_tie.html +libs/fusion/doc/html/fusion/container/generation/metafunctions/vector_tie.html +libs/fusion/doc/html/fusion/container.html +libs/fusion/doc/html/fusion/container/list.html +libs/fusion/doc/html/fusion/container/map.html +libs/fusion/doc/html/fusion/container/set.html +libs/fusion/doc/html/fusion/container/vector.html +libs/fusion/doc/html/fusion/extension/ext_full.html +libs/fusion/doc/html/fusion/extension.html +libs/fusion/doc/html/fusion/extension/iterator_facade.html +libs/fusion/doc/html/fusion/extension/sequence_facade.html +libs/fusion/doc/html/fusion/functional/adapters/fused_function_object.html +libs/fusion/doc/html/fusion/functional/adapters/fused.html +libs/fusion/doc/html/fusion/functional/adapters/fused_procedure.html +libs/fusion/doc/html/fusion/functional/adapters.html +libs/fusion/doc/html/fusion/functional/adapters/limits.html +libs/fusion/doc/html/fusion/functional/adapters/unfused.html +libs/fusion/doc/html/fusion/functional/adapters/unfused_typed.html +libs/fusion/doc/html/fusion/functional/concepts/callable.html +libs/fusion/doc/html/fusion/functional/concepts/def_callable.html +libs/fusion/doc/html/fusion/functional/concepts.html +libs/fusion/doc/html/fusion/functional/concepts/poly.html +libs/fusion/doc/html/fusion/functional/concepts/reg_callable.html +libs/fusion/doc/html/fusion/functional/generation/functions.html +libs/fusion/doc/html/fusion/functional/generation/functions/mk_fused_fobj.html +libs/fusion/doc/html/fusion/functional/generation/functions/mk_fused.html +libs/fusion/doc/html/fusion/functional/generation/functions/mk_fused_proc.html +libs/fusion/doc/html/fusion/functional/generation/functions/mk_unfused.html +libs/fusion/doc/html/fusion/functional/generation.html +libs/fusion/doc/html/fusion/functional/generation/metafunctions.html +libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_fused_fobj.html +libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_fused.html +libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_fused_proc.html +libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_unfused.html +libs/fusion/doc/html/fusion/functional.html +libs/fusion/doc/html/fusion/functional/invocation/functions.html +libs/fusion/doc/html/fusion/functional/invocation/functions/invoke_fobj.html +libs/fusion/doc/html/fusion/functional/invocation/functions/invoke.html +libs/fusion/doc/html/fusion/functional/invocation/functions/invoke_proc.html +libs/fusion/doc/html/fusion/functional/invocation.html +libs/fusion/doc/html/fusion/functional/invocation/limits.html +libs/fusion/doc/html/fusion/functional/invocation/metafunctions.html +libs/fusion/doc/html/fusion/functional/invocation/metafunctions/invoke_fobj.html +libs/fusion/doc/html/fusion/functional/invocation/metafunctions/invoke.html +libs/fusion/doc/html/fusion/functional/invocation/metafunctions/invoke_proc.html +libs/fusion/doc/html/fusion/introduction.html +libs/fusion/doc/html/fusion/iterator/concepts/bidirectional_iterator.html +libs/fusion/doc/html/fusion/iterator/concepts/forward_iterator.html +libs/fusion/doc/html/fusion/iterator/concepts.html +libs/fusion/doc/html/fusion/iterator/concepts/random_access_iterator.html +libs/fusion/doc/html/fusion/iterator/functions/advance_c.html +libs/fusion/doc/html/fusion/iterator/functions/advance.html +libs/fusion/doc/html/fusion/iterator/functions/deref.html +libs/fusion/doc/html/fusion/iterator/functions/distance.html +libs/fusion/doc/html/fusion/iterator/functions.html +libs/fusion/doc/html/fusion/iterator/functions/next.html +libs/fusion/doc/html/fusion/iterator/functions/prior.html +libs/fusion/doc/html/fusion/iterator.html +libs/fusion/doc/html/fusion/iterator/metafunctions/advance_c.html +libs/fusion/doc/html/fusion/iterator/metafunctions/advance.html +libs/fusion/doc/html/fusion/iterator/metafunctions/deref.html +libs/fusion/doc/html/fusion/iterator/metafunctions/distance.html +libs/fusion/doc/html/fusion/iterator/metafunctions/equal_to.html +libs/fusion/doc/html/fusion/iterator/metafunctions.html +libs/fusion/doc/html/fusion/iterator/metafunctions/next.html +libs/fusion/doc/html/fusion/iterator/metafunctions/prior.html +libs/fusion/doc/html/fusion/iterator/metafunctions/value_of.html +libs/fusion/doc/html/fusion/iterator/operator.html +libs/fusion/doc/html/fusion/iterator/operator/operator_equality.html +libs/fusion/doc/html/fusion/iterator/operator/operator_inequality.html +libs/fusion/doc/html/fusion/iterator/operator/operator_unary_star.html +libs/fusion/doc/html/fusion/notes.html +libs/fusion/doc/html/fusion/organization.html +libs/fusion/doc/html/fusion/preface.html +libs/fusion/doc/html/fusion/quick_start.html +libs/fusion/doc/html/fusion/references.html +libs/fusion/doc/html/fusion/sequence/concepts/associative_sequence.html +libs/fusion/doc/html/fusion/sequence/concepts/bidirectional_sequence.html +libs/fusion/doc/html/fusion/sequence/concepts/forward_sequence.html +libs/fusion/doc/html/fusion/sequence/concepts.html +libs/fusion/doc/html/fusion/sequence/concepts/random_access_sequence.html +libs/fusion/doc/html/fusion/sequence.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/at_c.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/at.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/at_key.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/back.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/begin.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/empty.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/end.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/front.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/has_key.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/size.html +libs/fusion/doc/html/fusion/sequence/intrinsic/functions/swap.html +libs/fusion/doc/html/fusion/sequence/intrinsic.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/at_c.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/at.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/at_key.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/back.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/begin.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/empty.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/end.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/front.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/has_key.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/size.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/swap.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_c.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/value_at.html +libs/fusion/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_key.html +libs/fusion/doc/html/fusion/sequence/operator/comparison/equal.html +libs/fusion/doc/html/fusion/sequence/operator/comparison/greater_than_equal.html +libs/fusion/doc/html/fusion/sequence/operator/comparison/greater_than.html +libs/fusion/doc/html/fusion/sequence/operator/comparison.html +libs/fusion/doc/html/fusion/sequence/operator/comparison/less_than_equal.html +libs/fusion/doc/html/fusion/sequence/operator/comparison/less_than.html +libs/fusion/doc/html/fusion/sequence/operator/comparison/not_equal.html +libs/fusion/doc/html/fusion/sequence/operator.html +libs/fusion/doc/html/fusion/sequence/operator/i_o.html +libs/fusion/doc/html/fusion/sequence/operator/i_o/in.html +libs/fusion/doc/html/fusion/sequence/operator/i_o/out.html +libs/fusion/doc/html/fusion/support/category_of.html +libs/fusion/doc/html/fusion/support/deduce.html +libs/fusion/doc/html/fusion/support/deduce_sequence.html +libs/fusion/doc/html/fusion/support.html +libs/fusion/doc/html/fusion/support/is_sequence.html +libs/fusion/doc/html/fusion/support/is_view.html +libs/fusion/doc/html/fusion/support/pair.html +libs/fusion/doc/html/fusion/support/tag_of.html +libs/fusion/doc/html/fusion/tuple/class_template_tuple/construction.html +libs/fusion/doc/html/fusion/tuple/class_template_tuple/element_access.html +libs/fusion/doc/html/fusion/tuple/class_template_tuple.html +libs/fusion/doc/html/fusion/tuple/class_template_tuple/relational_operators.html +libs/fusion/doc/html/fusion/tuple/class_template_tuple/tuple_creation_functions.html +libs/fusion/doc/html/fusion/tuple/class_template_tuple/tuple_helper_classes.html +libs/fusion/doc/html/fusion/tuple.html +libs/fusion/doc/html/fusion/tuple/pairs.html +libs/fusion/doc/html/fusion/view/filter_view.html +libs/fusion/doc/html/fusion/view.html +libs/fusion/doc/html/fusion/view/iterator_range.html +libs/fusion/doc/html/fusion/view/joint_view.html +libs/fusion/doc/html/fusion/view/nview.html +libs/fusion/doc/html/fusion/view/reverse_view.html +libs/fusion/doc/html/fusion/view/single_view.html +libs/fusion/doc/html/fusion/view/transform_view.html +libs/fusion/doc/html/fusion/view/zip_view.html +libs/fusion/doc/html/index.html +libs/fusion/index.html +libs/gil/doc/adobe_logo.gif +libs/gil/doc/adobe_source.css +libs/gil/doc/boost.png +libs/gil/doc/html/adobe_source.css +libs/gil/doc/html/algorithm_8hpp.html +libs/gil/doc/html/annotated.html +libs/gil/doc/html/any__image_8hpp.html +libs/gil/doc/html/channel_8hpp.html +libs/gil/doc/html/classes.html +libs/gil/doc/html/cmyk_8hpp.html +libs/gil/doc/html/deprecated_8hpp.html +libs/gil/doc/html/device__n_8hpp.html +libs/gil/doc/html/dirs.html +libs/gil/doc/html/doxygen.png +libs/gil/doc/html/files.html +libs/gil/doc/html/g_i_l_0001.html +libs/gil/doc/html/g_i_l_0002.html +libs/gil/doc/html/g_i_l_0003.html +libs/gil/doc/html/g_i_l_0004.html +libs/gil/doc/html/g_i_l_0005.html +libs/gil/doc/html/g_i_l_0006.html +libs/gil/doc/html/g_i_l_0007.html +libs/gil/doc/html/g_i_l_0008.html +libs/gil/doc/html/g_i_l_0010.html +libs/gil/doc/html/g_i_l_0011.html +libs/gil/doc/html/g_i_l_0012.html +libs/gil/doc/html/g_i_l_0013.html +libs/gil/doc/html/g_i_l_0014.html +libs/gil/doc/html/g_i_l_0015.html +libs/gil/doc/html/g_i_l_0016.html +libs/gil/doc/html/g_i_l_0018.html +libs/gil/doc/html/g_i_l_0020.html +libs/gil/doc/html/g_i_l_0022.html +libs/gil/doc/html/g_i_l_0024.html +libs/gil/doc/html/g_i_l_0026.html +libs/gil/doc/html/g_i_l_0028.html +libs/gil/doc/html/g_i_l_0030.html +libs/gil/doc/html/g_i_l_0032.html +libs/gil/doc/html/g_i_l_0034.html +libs/gil/doc/html/g_i_l_0036.html +libs/gil/doc/html/g_i_l_0038.html +libs/gil/doc/html/g_i_l_0040.html +libs/gil/doc/html/g_i_l_0042.html +libs/gil/doc/html/g_i_l_0044.html +libs/gil/doc/html/g_i_l_0046.html +libs/gil/doc/html/g_i_l_0048.html +libs/gil/doc/html/g_i_l_0050.html +libs/gil/doc/html/g_i_l_0052.html +libs/gil/doc/html/g_i_l_0054.html +libs/gil/doc/html/g_i_l_0056.html +libs/gil/doc/html/g_i_l_0058.html +libs/gil/doc/html/g_i_l_0060.html +libs/gil/doc/html/g_i_l_0062.html +libs/gil/doc/html/g_i_l_0064.html +libs/gil/doc/html/g_i_l_0065.html +libs/gil/doc/html/g_i_l_0066.html +libs/gil/doc/html/g_i_l_0067.html +libs/gil/doc/html/g_i_l_0068.html +libs/gil/doc/html/g_i_l_0069.html +libs/gil/doc/html/g_i_l_0070.html +libs/gil/doc/html/g_i_l_0071.html +libs/gil/doc/html/g_i_l_0072.html +libs/gil/doc/html/g_i_l_0074.html +libs/gil/doc/html/g_i_l_0075.html +libs/gil/doc/html/g_i_l_0076.html +libs/gil/doc/html/g_i_l_0077.html +libs/gil/doc/html/g_i_l_0078.html +libs/gil/doc/html/g_i_l_0079.html +libs/gil/doc/html/g_i_l_0080.html +libs/gil/doc/html/g_i_l_0081.html +libs/gil/doc/html/g_i_l_0082.html +libs/gil/doc/html/g_i_l_0083.html +libs/gil/doc/html/g_i_l_0084.html +libs/gil/doc/html/g_i_l_0085.html +libs/gil/doc/html/g_i_l_0086.html +libs/gil/doc/html/g_i_l_0087.html +libs/gil/doc/html/g_i_l_0088.html +libs/gil/doc/html/g_i_l_0089.html +libs/gil/doc/html/g_i_l_0090.html +libs/gil/doc/html/g_i_l_0091.html +libs/gil/doc/html/g_i_l_0092.html +libs/gil/doc/html/g_i_l_0093.html +libs/gil/doc/html/g_i_l_0094.html +libs/gil/doc/html/g_i_l_0095.html +libs/gil/doc/html/g_i_l_0096.html +libs/gil/doc/html/g_i_l_0097.html +libs/gil/doc/html/g_i_l_0098.html +libs/gil/doc/html/g_i_l_0099.html +libs/gil/doc/html/g_i_l_0100.html +libs/gil/doc/html/g_i_l_0101.html +libs/gil/doc/html/g_i_l_0102.html +libs/gil/doc/html/g_i_l_0103.html +libs/gil/doc/html/g_i_l_0104.html +libs/gil/doc/html/g_i_l_0105.html +libs/gil/doc/html/g_i_l_0106.html +libs/gil/doc/html/g_i_l_0107.html +libs/gil/doc/html/g_i_l_0108.html +libs/gil/doc/html/g_i_l_0109.html +libs/gil/doc/html/g_i_l_0110.html +libs/gil/doc/html/g_i_l_0111.html +libs/gil/doc/html/g_i_l_0112.html +libs/gil/doc/html/g_i_l_0113.html +libs/gil/doc/html/g_i_l_0114.html +libs/gil/doc/html/g_i_l_0115.html +libs/gil/doc/html/g_i_l_0116.html +libs/gil/doc/html/g_i_l_0117.html +libs/gil/doc/html/g_i_l_0118.html +libs/gil/doc/html/g_i_l_0119.html +libs/gil/doc/html/g_i_l_0120.html +libs/gil/doc/html/g_i_l_0121.html +libs/gil/doc/html/g_i_l_0122.html +libs/gil/doc/html/g_i_l_0123.html +libs/gil/doc/html/g_i_l_0124.html +libs/gil/doc/html/g_i_l_0126.html +libs/gil/doc/html/g_i_l_0127.html +libs/gil/doc/html/g_i_l_0128.html +libs/gil/doc/html/g_i_l_0129.html +libs/gil/doc/html/g_i_l_0130.html +libs/gil/doc/html/g_i_l_0131.html +libs/gil/doc/html/g_i_l_0132.html +libs/gil/doc/html/g_i_l_0133.html +libs/gil/doc/html/g_i_l_0134.html +libs/gil/doc/html/g_i_l_0135.html +libs/gil/doc/html/g_i_l_0136.html +libs/gil/doc/html/g_i_l_0137.html +libs/gil/doc/html/g_i_l_0138.html +libs/gil/doc/html/g_i_l_0139.html +libs/gil/doc/html/g_i_l_0140.html +libs/gil/doc/html/g_i_l_0141.html +libs/gil/doc/html/g_i_l_0142.html +libs/gil/doc/html/g_i_l_0143.html +libs/gil/doc/html/g_i_l_0145.html +libs/gil/doc/html/g_i_l_0148.html +libs/gil/doc/html/g_i_l_0149.html +libs/gil/doc/html/g_i_l_0152.html +libs/gil/doc/html/g_i_l_0153.html +libs/gil/doc/html/g_i_l_0154.html +libs/gil/doc/html/g_i_l_0155.html +libs/gil/doc/html/g_i_l_0156.html +libs/gil/doc/html/g_i_l_0157.html +libs/gil/doc/html/g_i_l_0161.html +libs/gil/doc/html/g_i_l_0169.html +libs/gil/doc/html/g_i_l_0170.html +libs/gil/doc/html/g_i_l_0171.html +libs/gil/doc/html/g_i_l_0172.html +libs/gil/doc/html/g_i_l_0173.html +libs/gil/doc/html/g_i_l_0174.html +libs/gil/doc/html/g_i_l_0175.html +libs/gil/doc/html/g_i_l_0176.html +libs/gil/doc/html/g_i_l_0177.html +libs/gil/doc/html/g_i_l_0178.html +libs/gil/doc/html/g_i_l_0179.html +libs/gil/doc/html/g_i_l_0180.html +libs/gil/doc/html/g_i_l_0181.html +libs/gil/doc/html/g_i_l_0182.html +libs/gil/doc/html/g_i_l_0183.html +libs/gil/doc/html/g_i_l_0184.html +libs/gil/doc/html/g_i_l_0185.html +libs/gil/doc/html/g_i_l_0186.html +libs/gil/doc/html/g_i_l_0187.html +libs/gil/doc/html/g_i_l_0188.html +libs/gil/doc/html/g_i_l_0189.html +libs/gil/doc/html/g_i_l_0190.html +libs/gil/doc/html/g_i_l_0191.html +libs/gil/doc/html/g_i_l_0192.html +libs/gil/doc/html/g_i_l_0193.html +libs/gil/doc/html/g_i_l_0194.html +libs/gil/doc/html/g_i_l_0195.html +libs/gil/doc/html/g_i_l_0196.html +libs/gil/doc/html/g_i_l_0197.html +libs/gil/doc/html/g_i_l_0198.html +libs/gil/doc/html/g_i_l_0199.html +libs/gil/doc/html/g_i_l_0200.html +libs/gil/doc/html/g_i_l_0201.html +libs/gil/doc/html/g_i_l_0202.html +libs/gil/doc/html/g_i_l_0203.html +libs/gil/doc/html/g_i_l_0204.html +libs/gil/doc/html/g_i_l_0205.html +libs/gil/doc/html/g_i_l_0206.html +libs/gil/doc/html/g_i_l_0207.html +libs/gil/doc/html/g_i_l_0208.html +libs/gil/doc/html/g_i_l_0209.html +libs/gil/doc/html/g_i_l_0210.html +libs/gil/doc/html/g_i_l_0211.html +libs/gil/doc/html/g_i_l_0212.html +libs/gil/doc/html/g_i_l_0213.html +libs/gil/doc/html/g_i_l_0214.html +libs/gil/doc/html/g_i_l_0215.html +libs/gil/doc/html/g_i_l_0216.html +libs/gil/doc/html/g_i_l_0217.html +libs/gil/doc/html/g_i_l_0218.html +libs/gil/doc/html/g_i_l_0219.html +libs/gil/doc/html/g_i_l_0220.html +libs/gil/doc/html/g_i_l_0221.html +libs/gil/doc/html/g_i_l_0223.html +libs/gil/doc/html/g_i_l_0224.html +libs/gil/doc/html/g_i_l_0225.html +libs/gil/doc/html/g_i_l_0226.html +libs/gil/doc/html/g_i_l_0227.html +libs/gil/doc/html/g_i_l_0228.html +libs/gil/doc/html/g_i_l_0229.html +libs/gil/doc/html/g_i_l_0230.html +libs/gil/doc/html/g_i_l_0231.html +libs/gil/doc/html/g_i_l_0232.html +libs/gil/doc/html/g_i_l_0233.html +libs/gil/doc/html/g_i_l_0234.html +libs/gil/doc/html/g_i_l_0235.html +libs/gil/doc/html/g_i_l_0236.html +libs/gil/doc/html/g_i_l_0237.html +libs/gil/doc/html/g_i_l_0238.html +libs/gil/doc/html/g_i_l_0239.html +libs/gil/doc/html/g_i_l_0240.html +libs/gil/doc/html/g_i_l_0241.html +libs/gil/doc/html/g_i_l_0242.html +libs/gil/doc/html/g_i_l_0243.html +libs/gil/doc/html/g_i_l_0244.html +libs/gil/doc/html/g_i_l_0245.html +libs/gil/doc/html/g_i_l_0246.html +libs/gil/doc/html/g_i_l_0247.html +libs/gil/doc/html/g_i_l_0248.html +libs/gil/doc/html/g_i_l_0249.html +libs/gil/doc/html/g_i_l_0250.html +libs/gil/doc/html/g_i_l_0251.html +libs/gil/doc/html/g_i_l_0252.html +libs/gil/doc/html/g_i_l_0253.html +libs/gil/doc/html/g_i_l_0254.html +libs/gil/doc/html/g_i_l_0255.html +libs/gil/doc/html/g_i_l_0256.html +libs/gil/doc/html/g_i_l_0257.html +libs/gil/doc/html/g_i_l_0258.html +libs/gil/doc/html/g_i_l_0259.html +libs/gil/doc/html/g_i_l_0260.html +libs/gil/doc/html/g_i_l_0262.html +libs/gil/doc/html/g_i_l_0264.html +libs/gil/doc/html/g_i_l_0266.html +libs/gil/doc/html/g_i_l_0268.html +libs/gil/doc/html/g_i_l_0270.html +libs/gil/doc/html/g_i_l_0272.html +libs/gil/doc/html/g_i_l_0274.html +libs/gil/doc/html/g_i_l_0276.html +libs/gil/doc/html/g_i_l_0278.html +libs/gil/doc/html/g_i_l_0280.html +libs/gil/doc/html/g_i_l_0282.html +libs/gil/doc/html/g_i_l_0284.html +libs/gil/doc/html/g_i_l_0286.html +libs/gil/doc/html/g_i_l_0288.html +libs/gil/doc/html/g_i_l_0290.html +libs/gil/doc/html/g_i_l_0292.html +libs/gil/doc/html/g_i_l_0294.html +libs/gil/doc/html/g_i_l_0296.html +libs/gil/doc/html/g_i_l_0298.html +libs/gil/doc/html/g_i_l_0300.html +libs/gil/doc/html/g_i_l_0302.html +libs/gil/doc/html/g_i_l_0304.html +libs/gil/doc/html/g_i_l_0306.html +libs/gil/doc/html/g_i_l_0308.html +libs/gil/doc/html/g_i_l_0310.html +libs/gil/doc/html/g_i_l_0312.html +libs/gil/doc/html/g_i_l_0314.html +libs/gil/doc/html/g_i_l_0316.html +libs/gil/doc/html/g_i_l_0318.html +libs/gil/doc/html/g_i_l_0320.html +libs/gil/doc/html/g_i_l_0322.html +libs/gil/doc/html/g_i_l_0324.html +libs/gil/doc/html/g_i_l_0326.html +libs/gil/doc/html/g_i_l_0328.html +libs/gil/doc/html/g_i_l_0330.html +libs/gil/doc/html/g_i_l_0332.html +libs/gil/doc/html/g_i_l_0334.html +libs/gil/doc/html/g_i_l_0336.html +libs/gil/doc/html/g_i_l_0338.html +libs/gil/doc/html/g_i_l_0340.html +libs/gil/doc/html/g_i_l_0342.html +libs/gil/doc/html/g_i_l_0344.html +libs/gil/doc/html/g_i_l_0346.html +libs/gil/doc/html/g_i_l_0348.html +libs/gil/doc/html/g_i_l_0350.html +libs/gil/doc/html/g_i_l_0352.html +libs/gil/doc/html/g_i_l_0354.html +libs/gil/doc/html/g_i_l_0356.html +libs/gil/doc/html/g_i_l_0358.html +libs/gil/doc/html/g_i_l_0360.html +libs/gil/doc/html/g_i_l_0362.html +libs/gil/doc/html/g_i_l_0364.html +libs/gil/doc/html/g_i_l_0366.html +libs/gil/doc/html/g_i_l_0368.html +libs/gil/doc/html/g_i_l_0370.html +libs/gil/doc/html/g_i_l_0372.html +libs/gil/doc/html/g_i_l_0374.html +libs/gil/doc/html/g_i_l_0376.html +libs/gil/doc/html/g_i_l_0378.html +libs/gil/doc/html/g_i_l_0380.html +libs/gil/doc/html/g_i_l_0382.html +libs/gil/doc/html/g_i_l_0384.html +libs/gil/doc/html/g_i_l_0385.html +libs/gil/doc/html/g_i_l_0387.html +libs/gil/doc/html/g_i_l_0389.html +libs/gil/doc/html/g_i_l_0391.html +libs/gil/doc/html/g_i_l_0393.html +libs/gil/doc/html/g_i_l_0395.html +libs/gil/doc/html/g_i_l_0397.html +libs/gil/doc/html/g_i_l_0399.html +libs/gil/doc/html/g_i_l_0401.html +libs/gil/doc/html/g_i_l_0403.html +libs/gil/doc/html/g_i_l_0404.html +libs/gil/doc/html/g_i_l_0405.html +libs/gil/doc/html/g_i_l_0406.html +libs/gil/doc/html/g_i_l_0408.html +libs/gil/doc/html/g_i_l_0410.html +libs/gil/doc/html/g_i_l_0412.html +libs/gil/doc/html/g_i_l_0414.html +libs/gil/doc/html/g_i_l_0416.html +libs/gil/doc/html/g_i_l_0418.html +libs/gil/doc/html/g_i_l_0420.html +libs/gil/doc/html/g_i_l_0422.html +libs/gil/doc/html/g_i_l_0424.html +libs/gil/doc/html/g_i_l_0426.html +libs/gil/doc/html/g_i_l_0428.html +libs/gil/doc/html/g_i_l_0429.html +libs/gil/doc/html/g_i_l_0431.html +libs/gil/doc/html/g_i_l_0432.html +libs/gil/doc/html/g_i_l_0434.html +libs/gil/doc/html/g_i_l_0436.html +libs/gil/doc/html/g_i_l_0438.html +libs/gil/doc/html/g_i_l_0440.html +libs/gil/doc/html/g_i_l_0442.html +libs/gil/doc/html/g_i_l_0444.html +libs/gil/doc/html/g_i_l_0445.html +libs/gil/doc/html/g_i_l_0447.html +libs/gil/doc/html/g_i_l_0448.html +libs/gil/doc/html/g_i_l_0450.html +libs/gil/doc/html/g_i_l_0452.html +libs/gil/doc/html/g_i_l_0453.html +libs/gil/doc/html/g_i_l_0455.html +libs/gil/doc/html/g_i_l_0457.html +libs/gil/doc/html/g_i_l_0459.html +libs/gil/doc/html/g_i_l_0461.html +libs/gil/doc/html/g_i_l_0463.html +libs/gil/doc/html/g_i_l_0465.html +libs/gil/doc/html/g_i_l_0467.html +libs/gil/doc/html/g_i_l_0469.html +libs/gil/doc/html/g_i_l_0471.html +libs/gil/doc/html/g_i_l_0473.html +libs/gil/doc/html/g_i_l_0475.html +libs/gil/doc/html/g_i_l_0477.html +libs/gil/doc/html/g_i_l_0479.html +libs/gil/doc/html/g_i_l_0481.html +libs/gil/doc/html/g_i_l_0483.html +libs/gil/doc/html/g_i_l_0485.html +libs/gil/doc/html/g_i_l_0487.html +libs/gil/doc/html/g_i_l_0489.html +libs/gil/doc/html/g_i_l_0490.html +libs/gil/doc/html/g_i_l_0493.html +libs/gil/doc/html/g_i_l_0494.html +libs/gil/doc/html/g_i_l_0496.html +libs/gil/doc/html/g_i_l_0499.html +libs/gil/doc/html/g_i_l_0501.html +libs/gil/doc/html/g_i_l_0503.html +libs/gil/doc/html/g_i_l_0505.html +libs/gil/doc/html/g_i_l_0507.html +libs/gil/doc/html/g_i_l_0509.html +libs/gil/doc/html/g_i_l_0511.html +libs/gil/doc/html/g_i_l_0513.html +libs/gil/doc/html/g_i_l_0515.html +libs/gil/doc/html/g_i_l_0517.html +libs/gil/doc/html/g_i_l_0519.html +libs/gil/doc/html/g_i_l_0521.html +libs/gil/doc/html/g_i_l_0522.html +libs/gil/doc/html/g_i_l_0523.html +libs/gil/doc/html/g_i_l_0525.html +libs/gil/doc/html/g_i_l_0526.html +libs/gil/doc/html/g_i_l_0527.html +libs/gil/doc/html/g_i_l_0528.html +libs/gil/doc/html/g_i_l_0529.html +libs/gil/doc/html/g_i_l_0530.html +libs/gil/doc/html/g_i_l_0531.html +libs/gil/doc/html/g_i_l_0532.html +libs/gil/doc/html/g_i_l_0533.html +libs/gil/doc/html/g_i_l_0534.html +libs/gil/doc/html/g_i_l_0535.html +libs/gil/doc/html/g_i_l_0536.html +libs/gil/doc/html/g_i_l_0537.html +libs/gil/doc/html/g_i_l_0538.html +libs/gil/doc/html/g_i_l_0540.html +libs/gil/doc/html/g_i_l_0541.html +libs/gil/doc/html/g_i_l_0542.html +libs/gil/doc/html/g_i_l_0543.html +libs/gil/doc/html/g_i_l_0544.html +libs/gil/doc/html/g_i_l_0546.html +libs/gil/doc/html/g_i_l_0547.html +libs/gil/doc/html/g_i_l_0549.html +libs/gil/doc/html/g_i_l_0550.html +libs/gil/doc/html/g_i_l_0551.html +libs/gil/doc/html/g_i_l_0552.html +libs/gil/doc/html/g_i_l_0553.html +libs/gil/doc/html/g_i_l_0555.html +libs/gil/doc/html/g_i_l_0557.html +libs/gil/doc/html/g_i_l_0559.html +libs/gil/doc/html/g_i_l_0561.html +libs/gil/doc/html/g_i_l_0563.html +libs/gil/doc/html/g_i_l_0565.html +libs/gil/doc/html/g_i_l_0567.html +libs/gil/doc/html/g_i_l_0568.html +libs/gil/doc/html/g_i_l_0569.html +libs/gil/doc/html/g_i_l_0570.html +libs/gil/doc/html/g_i_l_0571.html +libs/gil/doc/html/g_i_l_0573.html +libs/gil/doc/html/g_i_l_0574.html +libs/gil/doc/html/g_i_l_0576.html +libs/gil/doc/html/g_i_l_0578.html +libs/gil/doc/html/g_i_l_0580.html +libs/gil/doc/html/g_i_l_0581.html +libs/gil/doc/html/g_i_l_0583.html +libs/gil/doc/html/g_i_l_0585.html +libs/gil/doc/html/g_i_l_0587.html +libs/gil/doc/html/g_i_l_0589.html +libs/gil/doc/html/g_i_l_0591.html +libs/gil/doc/html/g_i_l_0593.html +libs/gil/doc/html/g_i_l_0595.html +libs/gil/doc/html/g_i_l_0597.html +libs/gil/doc/html/g_i_l_0599.html +libs/gil/doc/html/g_i_l_0600.html +libs/gil/doc/html/g_i_l_0601.html +libs/gil/doc/html/g_i_l_0602.html +libs/gil/doc/html/g_i_l_0603.html +libs/gil/doc/html/g_i_l_0604.html +libs/gil/doc/html/g_i_l_0606.html +libs/gil/doc/html/g_i_l_0607.html +libs/gil/doc/html/g_i_l_0609.html +libs/gil/doc/html/g_i_l_0611.html +libs/gil/doc/html/g_i_l_0613.html +libs/gil/doc/html/g_i_l_0615.html +libs/gil/doc/html/g_i_l_0617.html +libs/gil/doc/html/g_i_l_0618.html +libs/gil/doc/html/g_i_l_0620.html +libs/gil/doc/html/g_i_l_0621.html +libs/gil/doc/html/g_i_l_0623.html +libs/gil/doc/html/g_i_l_0625.html +libs/gil/doc/html/g_i_l_0627.html +libs/gil/doc/html/g_i_l_0628.html +libs/gil/doc/html/g_i_l_0629.html +libs/gil/doc/html/g_i_l_0630.html +libs/gil/doc/html/g_i_l_0631.html +libs/gil/doc/html/g_i_l_0633.html +libs/gil/doc/html/g_i_l_0635.html +libs/gil/doc/html/g_i_l_0636.html +libs/gil/doc/html/g_i_l_0637.html +libs/gil/doc/html/g_i_l_0638.html +libs/gil/doc/html/g_i_l_0639.html +libs/gil/doc/html/g_i_l_0640.html +libs/gil/doc/html/g_i_l_0641.html +libs/gil/doc/html/g_i_l_0642.html +libs/gil/doc/html/g_i_l_0643.html +libs/gil/doc/html/g_i_l_0644.html +libs/gil/doc/html/g_i_l_0645.html +libs/gil/doc/html/gil__all_8hpp.html +libs/gil/doc/html/gildesignguide.html +libs/gil/doc/html/giltutorial.html +libs/gil/doc/html/gray_8hpp.html +libs/gil/doc/html/group__bits16.html +libs/gil/doc/html/group__bits16s.html +libs/gil/doc/html/group__bits32f.html +libs/gil/doc/html/group__bits32.html +libs/gil/doc/html/group__bits32s.html +libs/gil/doc/html/group__bits8.html +libs/gil/doc/html/group__bits8s.html +libs/gil/doc/html/group___channel.html +libs/gil/doc/html/group___image.html +libs/gil/doc/html/group___i_o.html +libs/gil/doc/html/group___pixel.html +libs/gil/doc/html/group___point.html +libs/gil/doc/html/group___variant.html +libs/gil/doc/html/image_8hpp.html +libs/gil/doc/html/index.html +libs/gil/doc/html/interleaved.jpg +libs/gil/doc/html/io__error_8hpp.html +libs/gil/doc/html/jpeg__io_8hpp.html +libs/gil/doc/html/locator_8hpp.html +libs/gil/doc/html/mandel.jpg +libs/gil/doc/html/monkey_steps.jpg +libs/gil/doc/html/namespaceboost.html +libs/gil/doc/html/pixel_8hpp.html +libs/gil/doc/html/planar.jpg +libs/gil/doc/html/png__io_8hpp.html +libs/gil/doc/html/reduce_8hpp.html +libs/gil/doc/html/rgb_8hpp.html +libs/gil/doc/html/rgb_8hpp-source.html +libs/gil/doc/html/rgba_8hpp.html +libs/gil/doc/html/step_iterator.gif +libs/gil/doc/html/tiff__io_8hpp.html +libs/gil/doc/html/typedefs_8hpp.html +libs/gil/doc/html/utilities_8hpp.html +libs/gil/doc/html/variant_8hpp.html +libs/gil/doc/index.html +libs/gil/example/affine.cpp +libs/gil/example/convolution.cpp +libs/gil/example/dynamic_image.cpp +libs/gil/example/histogram.cpp +libs/gil/example/interleaved_ptr.cpp +libs/gil/example/interleaved_ptr.hpp +libs/gil/example/interleaved_ref.hpp +libs/gil/example/mandelbrot.cpp +libs/gil/example/packed_pixel.cpp +libs/gil/example/resize.cpp +libs/gil/example/x_gradient.cpp +libs/graph/doc/acknowledgements.html +libs/graph/doc/AddEdgeVisitor.html +libs/graph/doc/AdjacencyGraph.html +libs/graph/doc/adjacency_iterator.html +libs/graph/doc/adjacency_list.html +libs/graph/doc/adjacency_list_traits.html +libs/graph/doc/adjacency_matrix.html +libs/graph/doc/AdjacencyMatrix.html +libs/graph/doc/astar_heuristic.html +libs/graph/doc/AStarHeuristic.html +libs/graph/doc/astar_search.html +libs/graph/doc/astar_visitor.html +libs/graph/doc/AStarVisitor.html +libs/graph/doc/bandwidth.html +libs/graph/doc/BasicMatrix.html +libs/graph/doc/bc_clustering.html +libs/graph/doc/bellman_ford_shortest.html +libs/graph/doc/BellmanFordVisitor.html +libs/graph/doc/bellman_visitor.html +libs/graph/doc/betweenness_centrality.html +libs/graph/doc/bfs_visitor.html +libs/graph/doc/BFSVisitor.html +libs/graph/doc/bgl-cover.jpg +libs/graph/doc/bgl_named_params.html +libs/graph/doc/bibliography.html +libs/graph/doc/biconnected_components.html +libs/graph/doc/BidirectionalGraph.html +libs/graph/doc/boyer_myrvold.html +libs/graph/doc/breadth_first_search.html +libs/graph/doc/breadth_first_visit.html +libs/graph/doc/Buffer.html +libs/graph/doc/bundles.html +libs/graph/doc/challenge.html +libs/graph/doc/circle_layout.html +libs/graph/doc/cochet-terrasson98numerical.pdf +libs/graph/doc/ColorValue.html +libs/graph/doc/compressed_sparse_row.html +libs/graph/doc/connected_components.html +libs/graph/doc/constructing_algorithms.html +libs/graph/doc/copy_graph.html +libs/graph/doc/cuthill_mckee_ordering.html +libs/graph/doc/dag_shortest_paths.html +libs/graph/doc/dasdan-dac99.pdf +libs/graph/doc/depth_first_search.html +libs/graph/doc/depth_first_visit.html +libs/graph/doc/dfs_visitor.html +libs/graph/doc/DFSVisitor.html +libs/graph/doc/dijkstra_shortest_paths.html +libs/graph/doc/dijkstra_shortest_paths_no_color_map.html +libs/graph/doc/dijkstra_visitor.html +libs/graph/doc/DijkstraVisitor.html +libs/graph/doc/distance_recorder.html +libs/graph/doc/EdgeListGraph.html +libs/graph/doc/edge_list.html +libs/graph/doc/EdgeMutableGraph.html +libs/graph/doc/edmonds_karp_max_flow.html +libs/graph/doc/erdos_renyi_generator.html +libs/graph/doc/EventVisitor.html +libs/graph/doc/EventVisitorList.html +libs/graph/doc/exception.html +libs/graph/doc/faq.html +libs/graph/doc/figs/adj-list2.gif +libs/graph/doc/figs/adj_list.gif +libs/graph/doc/figs/adj_matrix.gif +libs/graph/doc/figs/adj-matrix.gif +libs/graph/doc/figs/adj-matrix-graph2.gif +libs/graph/doc/figs/adj-matrix-graph3.gif +libs/graph/doc/figs/analogy.gif +libs/graph/doc/figs/betweenness_centrality.gif +libs/graph/doc/figs/bfs_example.gif +libs/graph/doc/figs/biconnected.png +libs/graph/doc/figs/canonical_ordering.png +libs/graph/doc/figs/central_point_dominance.gif +libs/graph/doc/figs/concepts.gif +libs/graph/doc/figs/cr.jpg +libs/graph/doc/figs/dfs.gif +libs/graph/doc/figs/digraph.gif +libs/graph/doc/figs/dominator-tree1.gif +libs/graph/doc/figs/dominator-tree2.gif +libs/graph/doc/figs/edge_list.gif +libs/graph/doc/figs/embedding_illustration.png +libs/graph/doc/figs/face_illustration.png +libs/graph/doc/figs/face_traversal_example.png +libs/graph/doc/figs/file_dep.gif +libs/graph/doc/figs/ga-circle.png +libs/graph/doc/figs/ga-heart.png +libs/graph/doc/figs/ga-square.png +libs/graph/doc/figs/grid_graph_indexed.png +libs/graph/doc/figs/grid_graph_unwrapped.png +libs/graph/doc/figs/grid_graph_wrapped.png +libs/graph/doc/figs/k_5_and_k_3_3.png +libs/graph/doc/figs/kolmogorov_max_flow.gif +libs/graph/doc/figs/max-flow.gif +libs/graph/doc/figs/maximal-match.png +libs/graph/doc/figs/maximum-match.png +libs/graph/doc/figs/planar_plane_straight_line.png +libs/graph/doc/figs/python.gif +libs/graph/doc/figs/python_ico.gif +libs/graph/doc/figs/quick_start.gif +libs/graph/doc/figs/rel_betweenness_centrality.gif +libs/graph/doc/figs/sequential_vertex_coloring.png +libs/graph/doc/figs/sigma_st.gif +libs/graph/doc/figs/sigma_stv.gif +libs/graph/doc/figs/straight_line_drawing.png +libs/graph/doc/figs/subgraph.gif +libs/graph/doc/figs/subgraph-tree.gif +libs/graph/doc/figs/undigraph.gif +libs/graph/doc/figs/undir-adj-list.gif +libs/graph/doc/figs/undir-adj-matrix2.gif +libs/graph/doc/figs/undir-adj-matrix-graph2.gif +libs/graph/doc/figs/undir-adj-matrix-graph3.gif +libs/graph/doc/figs/v_star.gif +libs/graph/doc/figs/wheel_graph.gif +libs/graph/doc/file_dependency_example.html +libs/graph/doc/filtered_graph.html +libs/graph/doc/floyd_warshall_shortest.html +libs/graph/doc/fruchterman_reingold.html +libs/graph/doc/graph_coloring.html +libs/graph/doc/graph_concepts.html +libs/graph/doc/Graph.html +libs/graph/doc/graph_theory_review.html +libs/graph/doc/graph_traits.html +libs/graph/doc/grid_graph.html +libs/graph/doc/gursoy_atun_layout.html +libs/graph/doc/history.html +libs/graph/doc/howard_cycle_ratio.html +libs/graph/doc/IncidenceGraph.html +libs/graph/doc/incident.html +libs/graph/doc/incremental_components.html +libs/graph/doc/index.html +libs/graph/doc/inv_adjacency_iterator.html +libs/graph/doc/iscope99.pdf +libs/graph/doc/is_kuratowski_subgraph.html +libs/graph/doc/isomorphism.html +libs/graph/doc/isomorphism-impl.pdf +libs/graph/doc/is_straight_line_drawing.html +libs/graph/doc/IteratorConstructibleGraph.html +libs/graph/doc/johnson_all_pairs_shortest.html +libs/graph/doc/kamada_kawai_spring_layout.html +libs/graph/doc/kevin_bacon.html +libs/graph/doc/king_ordering.html +libs/graph/doc/known_problems.html +libs/graph/doc/kolmogorov_max_flow.html +libs/graph/doc/kruskal_min_spanning_tree.html +libs/graph/doc/layout_tolerance.html +libs/graph/doc/leda_conversion.html +libs/graph/doc/lengauer_tarjan_dominator.htm +libs/graph/doc/make_biconnected_planar.html +libs/graph/doc/make_connected.html +libs/graph/doc/make_maximal_planar.html +libs/graph/doc/maximum_matching.html +libs/graph/doc/mcgregor_common_subgraphs.html +libs/graph/doc/metric_tsp_approx.html +libs/graph/doc/minimum_degree_ordering.html +libs/graph/doc/Monoid.html +libs/graph/doc/MutableGraph.html +libs/graph/doc/MutablePropertyGraph.html +libs/graph/doc/null_visitor.html +libs/graph/doc/opposite.html +libs/graph/doc/planar_canonical_ordering.html +libs/graph/doc/PlanarEmbedding.html +libs/graph/doc/planar_face_traversal.html +libs/graph/doc/PlanarFaceVisitor.html +libs/graph/doc/planar_graphs.html +libs/graph/doc/plod_generator.html +libs/graph/doc/predecessor_recorder.html +libs/graph/doc/prim_minimum_spanning_tree.html +libs/graph/doc/profile.htm +libs/graph/doc/PropertyGraph.html +libs/graph/doc/property.html +libs/graph/doc/property_map.html +libs/graph/doc/PropertyTag.html +libs/graph/doc/property_writer.html +libs/graph/doc/publications.html +libs/graph/doc/push_relabel_max_flow.html +libs/graph/doc/python.html +libs/graph/doc/quick_tour.html +libs/graph/doc/random.html +libs/graph/doc/random_layout.html +libs/graph/doc/r_c_shortest_paths.html +libs/graph/doc/read_dimacs.html +libs/graph/doc/read_graphml.html +libs/graph/doc/read_graphviz.html +libs/graph/doc/reverse_graph.html +libs/graph/doc/sequential_vertex_coloring.html +libs/graph/doc/sloan_ordering.htm +libs/graph/doc/sloan_start_end_vertices.htm +libs/graph/doc/small_world_generator.html +libs/graph/doc/sorted_erdos_renyi_gen.html +libs/graph/doc/sparse_matrix_ordering.html +libs/graph/doc/stanford_graph.html +libs/graph/doc/straight_line_drawing.html +libs/graph/doc/strong_components.html +libs/graph/doc/subgraph.html +libs/graph/doc/table_of_contents.html +libs/graph/doc/tc.gif +libs/graph/doc/tc-out.gif +libs/graph/doc/time_stamper.html +libs/graph/doc/topological_sort.html +libs/graph/doc/transitive_closure.html +libs/graph/doc/transpose_graph.html +libs/graph/doc/trouble_shooting.html +libs/graph/doc/tsp_tour_len_visitor.html +libs/graph/doc/tsp_tour_visitor.html +libs/graph/doc/TSPTourVisitor.html +libs/graph/doc/undirected_dfs.html +libs/graph/doc/users.html +libs/graph/doc/using_adjacency_list.html +libs/graph/doc/using_property_maps.html +libs/graph/doc/VertexAndEdgeListGraph.html +libs/graph/doc/VertexListGraph.html +libs/graph/doc/VertexMutableGraph.html +libs/graph/doc/visitor_concepts.html +libs/graph/doc/wavefront.htm +libs/graph/doc/write_dimacs.html +libs/graph/doc/write_graphml.html +libs/graph/doc/write-graphviz.html +libs/graph/example/astar-cities.cpp +libs/graph/example/bellman-example.cpp +libs/graph/example/bfs.cpp +libs/graph/example/bfs-example2.cpp +libs/graph/example/bfs-example.cpp +libs/graph/example/biconnected_components.cpp +libs/graph/example/canonical_ordering.cpp +libs/graph/example/city_visitor.cpp +libs/graph/example/connected_components.cpp +libs/graph/example/csr-example.cpp +libs/graph/example/cuthill_mckee_ordering.cpp +libs/graph/example/cycle_ratio_example.cpp +libs/graph/example/dag_shortest_paths.cpp +libs/graph/example/dave.cpp +libs/graph/example/dfs-example.cpp +libs/graph/example/dfs_parenthesis.cpp +libs/graph/example/dijkstra-example.cpp +libs/graph/example/dijkstra-no-color-map-example.cpp +libs/graph/example/edmonds-karp-eg.cpp +libs/graph/example/family-tree-eg.cpp +libs/graph/example/file_dependencies.cpp +libs/graph/example/fr_layout.cpp +libs/graph/example/girth.cpp +libs/graph/example/graphviz.cpp +libs/graph/example/grid_graph_example.cpp +libs/graph/example/incremental_components.cpp +libs/graph/example/isomorphism.cpp +libs/graph/example/johnson-eg.cpp +libs/graph/example/kevin-bacon.cpp +libs/graph/example/king_ordering.cpp +libs/graph/example/kolmogorov-eg.cpp +libs/graph/example/kruskal-example.cpp +libs/graph/example/kuratowski_subgraph.cpp +libs/graph/example/make_biconnected_planar.cpp +libs/graph/example/make_connected.cpp +libs/graph/example/make_maximal_planar.cpp +libs/graph/example/matching_example.cpp +libs/graph/example/max_flow.cpp +libs/graph/example/max_flow.dat +libs/graph/example/miles_span.cpp +libs/graph/example/minimum_degree_ordering.cpp +libs/graph/example/ordered_out_edges.cpp +libs/graph/example/planar_face_traversal.cpp +libs/graph/example/prim-example.cpp +libs/graph/example/quick_tour.cpp +libs/graph/example/r_c_shortest_paths_example.cpp +libs/graph/example/read_write_dimacs-eg.cpp +libs/graph/example/reverse-graph-eg.cpp +libs/graph/example/roget_components.cpp +libs/graph/example/simple_planarity_test.cpp +libs/graph/example/sloan_ordering.cpp +libs/graph/example/straight_line_drawing.cpp +libs/graph/example/strong_components.cpp +libs/graph/example/transitive_closure.cpp +libs/graph/example/transpose-example.cpp +libs/graph/example/undirected.cpp +libs/graph/example/undirected_dfs.cpp +libs/graph/index.html +libs/graph/test/dominator_tree_test.cpp +libs/graph/test/graph.cpp +libs/graph/test/metric_tsp_approx.cpp +libs/index.html +libs/integer/cstdint.htm +libs/integer/doc/integer_mask.html +libs/integer/doc/static_log2.html +libs/integer/doc/static_min_max.html +libs/integer/index.html +libs/integer/integer.htm +libs/integer/integer_traits.html +libs/integer/test/integer_mask_test.cpp +libs/integer/test/static_log2_test.cpp +libs/integer/test/static_min_max_test.cpp +libs/interprocess/index.html +libs/intrusive/index.html +libs/intrusive/perf/perf_list.cpp +libs/io/doc/ios_state.html +libs/iostreams/doc/acknowledgments.html +libs/iostreams/doc/bibliography.html +libs/iostreams/doc/classes/aggregate.html +libs/iostreams/doc/classes/array.html +libs/iostreams/doc/classes/back_inserter.html +libs/iostreams/doc/classes/bzip2.html +libs/iostreams/doc/classes/chain.html +libs/iostreams/doc/classes/char_traits.html +libs/iostreams/doc/classes/classes.html +libs/iostreams/doc/classes/code_converter.html +libs/iostreams/doc/classes/counter.html +libs/iostreams/doc/classes/device.html +libs/iostreams/doc/classes/file_descriptor.html +libs/iostreams/doc/classes/file.html +libs/iostreams/doc/classes/filter.html +libs/iostreams/doc/classes/filtering_streambuf.html +libs/iostreams/doc/classes/filtering_stream.html +libs/iostreams/doc/classes/grep_filter.html +libs/iostreams/doc/classes/gzip.html +libs/iostreams/doc/classes/line_filter.html +libs/iostreams/doc/classes/mapped_file.html +libs/iostreams/doc/classes/mode.html +libs/iostreams/doc/classes/newline_filter.html +libs/iostreams/doc/classes/null.html +libs/iostreams/doc/classes/regex_filter.html +libs/iostreams/doc/classes/stdio_filter.html +libs/iostreams/doc/classes/symmetric_filter.html +libs/iostreams/doc/classes/zlib.html +libs/iostreams/doc/concepts/bidirectional_device.html +libs/iostreams/doc/concepts/bidirectional_filter.html +libs/iostreams/doc/concepts/blocking.html +libs/iostreams/doc/concepts/closable.html +libs/iostreams/doc/concepts/concepts.html +libs/iostreams/doc/concepts/device.html +libs/iostreams/doc/concepts/direct.html +libs/iostreams/doc/concepts/dual_use_filter.html +libs/iostreams/doc/concepts/filter.html +libs/iostreams/doc/concepts/flushable.html +libs/iostreams/doc/concepts/input_filter.html +libs/iostreams/doc/concepts/localizable.html +libs/iostreams/doc/concepts/multi_character.html +libs/iostreams/doc/concepts/optimally_buffered.html +libs/iostreams/doc/concepts/output_filter.html +libs/iostreams/doc/concepts/peekable.html +libs/iostreams/doc/concepts/pipable.html +libs/iostreams/doc/concepts/seekable_device.html +libs/iostreams/doc/concepts/seekable_filter.html +libs/iostreams/doc/concepts/sink.html +libs/iostreams/doc/concepts/source.html +libs/iostreams/doc/concepts/symmetric_filter.html +libs/iostreams/doc/faq.html +libs/iostreams/doc/functions/close.html +libs/iostreams/doc/functions/combine.html +libs/iostreams/doc/functions/compose.html +libs/iostreams/doc/functions/copy.html +libs/iostreams/doc/functions/filter_test.html +libs/iostreams/doc/functions/flush.html +libs/iostreams/doc/functions/functions.html +libs/iostreams/doc/functions/get.html +libs/iostreams/doc/functions/imbue.html +libs/iostreams/doc/functions/invert.html +libs/iostreams/doc/functions/optimal_buffer_size.html +libs/iostreams/doc/functions/positioning.html +libs/iostreams/doc/functions/putback.html +libs/iostreams/doc/functions/put.html +libs/iostreams/doc/functions/read.html +libs/iostreams/doc/functions/restrict.html +libs/iostreams/doc/functions/seek.html +libs/iostreams/doc/functions/slice.html +libs/iostreams/doc/functions/tee.html +libs/iostreams/doc/functions/write.html +libs/iostreams/doc/guide/asynchronous.html +libs/iostreams/doc/guide/buffering.html +libs/iostreams/doc/guide/code_conversion.html +libs/iostreams/doc/guide/concepts.html +libs/iostreams/doc/guide/exceptions.html +libs/iostreams/doc/guide/filtering_streams.html +libs/iostreams/doc/guide/generic_streams.html +libs/iostreams/doc/guide/guide.html +libs/iostreams/doc/guide/lifetimes.html +libs/iostreams/doc/guide/modes.html +libs/iostreams/doc/guide/pipelines.html +libs/iostreams/doc/guide/text_processing.html +libs/iostreams/doc/guide/traits.html +libs/iostreams/doc/guide/views.html +libs/iostreams/doc/home.html +libs/iostreams/doc/index.html +libs/iostreams/doc/installation.html +libs/iostreams/doc/macros/buffer_sizes.html +libs/iostreams/doc/macros/macros.html +libs/iostreams/doc/macros/workarounds.html +libs/iostreams/doc/menu.html +libs/iostreams/doc/portability.html +libs/iostreams/doc/quick_reference.html +libs/iostreams/doc/rationale.html +libs/iostreams/doc/reference.html +libs/iostreams/doc/release_notes.html +libs/iostreams/doc/theme/boost_small.png +libs/iostreams/doc/theme/iostreams.css +libs/iostreams/doc/theme/wedge.gif +libs/iostreams/doc/tree/tree.css +libs/iostreams/doc/tree/tree.js +libs/iostreams/doc/tutorial/container_device.html +libs/iostreams/doc/tutorial/container_sink.html +libs/iostreams/doc/tutorial/container_source.html +libs/iostreams/doc/tutorial/dictionary_filters.html +libs/iostreams/doc/tutorial/dual_use_filters.html +libs/iostreams/doc/tutorial/filter_usage.html +libs/iostreams/doc/tutorial/finite_state_filters.html +libs/iostreams/doc/tutorial/line_wrapping_filters.html +libs/iostreams/doc/tutorial/multichar_filters.html +libs/iostreams/doc/tutorial/shell_comments_filters.html +libs/iostreams/doc/tutorial/tab_expanding_filters.html +libs/iostreams/doc/tutorial/tutorial.html +libs/iostreams/doc/tutorial/unix2dos_filters.html +libs/iostreams/doc/tutorial/writing_devices.html +libs/iostreams/doc/tutorial/writing_filters.html +libs/iostreams/example/container_device.hpp +libs/iostreams/example/dictionary_filter.hpp +libs/iostreams/example/finite_state_filter.hpp +libs/iostreams/example/line_wrapping_filter.hpp +libs/iostreams/example/shell_comments_filter.hpp +libs/iostreams/example/tab_expanding_filter.hpp +libs/iostreams/example/unix2dos_filter.hpp +libs/iostreams/index.html +libs/iostreams/src/bzip2.cpp +libs/iostreams/src/file_descriptor.cpp +libs/iostreams/src/mapped_file.cpp +libs/iostreams/src/zlib.cpp +libs/io/test/ios_state_test.cpp +libs/iterator/doc/BidirectionalTraversal.html +libs/iterator/doc/BidirectionalTraversal.rst +libs/iterator/doc/counting_iterator.html +libs/iterator/doc/counting_iterator.pdf +libs/iterator/doc/counting_iterator.rst +libs/iterator/doc/facade-and-adaptor.html +libs/iterator/doc/facade-and-adaptor.pdf +libs/iterator/doc/facade-and-adaptor.rst +libs/iterator/doc/filter_iterator.html +libs/iterator/doc/filter_iterator.pdf +libs/iterator/doc/filter_iterator.rst +libs/iterator/doc/ForwardTraversal.html +libs/iterator/doc/ForwardTraversal.rst +libs/iterator/doc/function_output_iterator.html +libs/iterator/doc/function_output_iterator.pdf +libs/iterator/doc/function_output_iterator.rst +libs/iterator/doc/IncrementableIterator.html +libs/iterator/doc/IncrementableIterator.rst +libs/iterator/doc/index.html +libs/iterator/doc/index.rst +libs/iterator/doc/indirect_iterator.html +libs/iterator/doc/indirect_iterator.pdf +libs/iterator/doc/indirect_iterator.rst +libs/iterator/doc/iterator_adaptor.html +libs/iterator/doc/iterator_adaptor.pdf +libs/iterator/doc/iterator_adaptor.rst +libs/iterator/doc/iterator_archetypes.html +libs/iterator/doc/iterator_archetypes.pdf +libs/iterator/doc/iterator_archetypes.rst +libs/iterator/doc/iterator_concepts.html +libs/iterator/doc/iterator_concepts.pdf +libs/iterator/doc/iterator_concepts.rst +libs/iterator/doc/iterator_facade.html +libs/iterator/doc/iterator_facade.pdf +libs/iterator/doc/iterator_facade.rst +libs/iterator/doc/iterator_traits.html +libs/iterator/doc/iterator_traits.pdf +libs/iterator/doc/iterator_traits.rst +libs/iterator/doc/LvalueIterator.html +libs/iterator/doc/LvalueIterator.rst +libs/iterator/doc/new-iter-concepts.html +libs/iterator/doc/new-iter-concepts.pdf +libs/iterator/doc/new-iter-concepts.rst +libs/iterator/doc/oldeqnew.png +libs/iterator/doc/permutation_iterator.html +libs/iterator/doc/permutation_iterator.pdf +libs/iterator/doc/permutation_iterator.rst +libs/iterator/doc/pointee.html +libs/iterator/doc/pointee.pdf +libs/iterator/doc/pointee.rst +libs/iterator/doc/RandomAccessTraversal.html +libs/iterator/doc/RandomAccessTraversal.rst +libs/iterator/doc/ReadableIterator.html +libs/iterator/doc/ReadableIterator.rst +libs/iterator/doc/reverse_iterator.html +libs/iterator/doc/reverse_iterator.pdf +libs/iterator/doc/reverse_iterator.rst +libs/iterator/doc/SinglePassIterator.html +libs/iterator/doc/SinglePassIterator.rst +libs/iterator/doc/SwappableIterator.html +libs/iterator/doc/SwappableIterator.rst +libs/iterator/doc/transform_iterator.html +libs/iterator/doc/transform_iterator.pdf +libs/iterator/doc/transform_iterator.rst +libs/iterator/doc/traversal.png +libs/iterator/doc/WritableIterator.html +libs/iterator/doc/WritableIterator.rst +libs/iterator/doc/zip_iterator.html +libs/iterator/doc/zip_iterator.pdf +libs/iterator/doc/zip_iterator.rst +libs/iterator/example/counting_iterator_example.cpp +libs/iterator/example/filter_iterator_example.cpp +libs/iterator/example/indirect_iterator_example.cpp +libs/iterator/example/node_iterator1.cpp +libs/iterator/example/node_iterator2.cpp +libs/iterator/example/node_iterator2.hpp +libs/iterator/example/node_iterator3.cpp +libs/iterator/example/permutation_iter_example.cpp +libs/iterator/example/reverse_iterator_example.cpp +libs/iterator/example/transform_iterator_example.cpp +libs/iterator/index.html +libs/lambda/index.html +libs/libraries.htm +libs/logic/test/tribool_io_test.cpp +libs/logic/test/tribool_rename_test.cpp +libs/logic/test/tribool_test.cpp +libs/math/doc/common_factor.html +libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex/acosh.html +libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex/acos.html +libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex/asinh.html +libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex/asin.html +libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex/atanh.html +libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex/atan.html +libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex/history.html +libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex.html +libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex/implementation.html +libs/math/doc/complex/html/index.html +libs/math/doc/distexplorer/html/index.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/compile_time.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/credits.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/demo.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/gcd_function_object.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/header.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/history.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/introduction.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/lcm_function_object.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/rationale.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/run_time.html +libs/math/doc/gcd/html/gcd_and_lcm/gcd_lcm/synopsis.html +libs/math/doc/gcd/html/index.html +libs/math/doc/html/index.html +libs/math/doc/images/acosh.png +libs/math/doc/images/acos.png +libs/math/doc/images/asinh.png +libs/math/doc/images/asin.png +libs/math/doc/images/atanh.png +libs/math/doc/images/atan.png +libs/math/doc/index.html +libs/math/doc/octonion/html/boost_octonions/octonions/acknowledgements.html +libs/math/doc/octonion/html/boost_octonions/octonions/header_file.html +libs/math/doc/octonion/html/boost_octonions/octonions/history.html +libs/math/doc/octonion/html/boost_octonions/octonions.html +libs/math/doc/octonion/html/boost_octonions/octonions/non_mem.html +libs/math/doc/octonion/html/boost_octonions/octonions/oct_create.html +libs/math/doc/octonion/html/boost_octonions/octonions/octonion_member_functions.html +libs/math/doc/octonion/html/boost_octonions/octonions/octonion_member_typedefs.html +libs/math/doc/octonion/html/boost_octonions/octonions/octonion_specializations.html +libs/math/doc/octonion/html/boost_octonions/octonions/octonions_transcendentals.html +libs/math/doc/octonion/html/boost_octonions/octonions/octonion_value_operations.html +libs/math/doc/octonion/html/boost_octonions/octonions/overview.html +libs/math/doc/octonion/html/boost_octonions/octonions/synopsis.html +libs/math/doc/octonion/html/boost_octonions/octonions/template_class_octonion.html +libs/math/doc/octonion/html/boost_octonions/octonions/test_program.html +libs/math/doc/octonion/html/boost_octonions/octonions/to_do.html +libs/math/doc/octonion/html/index.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/acknowledgements.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/create.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/exp.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/header_file.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/history.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/mem_fun.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/mem_typedef.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/non_mem.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/overview.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/quat.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/spec.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/synopsis.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/test_program.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/to_do.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/trans.html +libs/math/doc/quaternion/html/boost_quaternions/quaternions/value_op.html +libs/math/doc/quaternion/html/index.html +libs/math/doc/sf_and_dist/equations/acosh1.png +libs/math/doc/sf_and_dist/equations/acosh2.png +libs/math/doc/sf_and_dist/equations/acosh3.png +libs/math/doc/sf_and_dist/equations/acosh4.png +libs/math/doc/sf_and_dist/equations/asinh1.png +libs/math/doc/sf_and_dist/equations/asinh2.png +libs/math/doc/sf_and_dist/equations/asinh3.png +libs/math/doc/sf_and_dist/equations/asinh4.png +libs/math/doc/sf_and_dist/equations/atanh1.png +libs/math/doc/sf_and_dist/equations/atanh2.png +libs/math/doc/sf_and_dist/equations/atanh3.png +libs/math/doc/sf_and_dist/equations/bessel10.png +libs/math/doc/sf_and_dist/equations/bessel11.png +libs/math/doc/sf_and_dist/equations/bessel12.png +libs/math/doc/sf_and_dist/equations/bessel13.png +libs/math/doc/sf_and_dist/equations/bessel14.png +libs/math/doc/sf_and_dist/equations/bessel15.png +libs/math/doc/sf_and_dist/equations/bessel16.png +libs/math/doc/sf_and_dist/equations/bessel1.png +libs/math/doc/sf_and_dist/equations/bessel2.png +libs/math/doc/sf_and_dist/equations/bessel3.png +libs/math/doc/sf_and_dist/equations/bessel4.png +libs/math/doc/sf_and_dist/equations/bessel5.png +libs/math/doc/sf_and_dist/equations/bessel6.png +libs/math/doc/sf_and_dist/equations/bessel7.png +libs/math/doc/sf_and_dist/equations/bessel8.png +libs/math/doc/sf_and_dist/equations/bessel9.png +libs/math/doc/sf_and_dist/equations/beta1.png +libs/math/doc/sf_and_dist/equations/beta2.png +libs/math/doc/sf_and_dist/equations/beta3.png +libs/math/doc/sf_and_dist/equations/beta4.png +libs/math/doc/sf_and_dist/equations/beta5.png +libs/math/doc/sf_and_dist/equations/beta7.png +libs/math/doc/sf_and_dist/equations/beta8.png +libs/math/doc/sf_and_dist/equations/beta_dist_kurtosis.png +libs/math/doc/sf_and_dist/equations/binomial_ref1.png +libs/math/doc/sf_and_dist/equations/binomial_ref2.png +libs/math/doc/sf_and_dist/equations/cauchy_ref1.png +libs/math/doc/sf_and_dist/equations/chf.png +libs/math/doc/sf_and_dist/equations/chi_squ_ref1.png +libs/math/doc/sf_and_dist/equations/chi_squ_tut1.png +libs/math/doc/sf_and_dist/equations/chi_squ_tut2.png +libs/math/doc/sf_and_dist/equations/chi_squ_tut3.png +libs/math/doc/sf_and_dist/equations/derivative1.png +libs/math/doc/sf_and_dist/equations/derivative2.png +libs/math/doc/sf_and_dist/equations/digamma1.png +libs/math/doc/sf_and_dist/equations/digamma2.png +libs/math/doc/sf_and_dist/equations/digamma3.png +libs/math/doc/sf_and_dist/equations/dist_tutorial1.png +libs/math/doc/sf_and_dist/equations/dist_tutorial2.png +libs/math/doc/sf_and_dist/equations/dist_tutorial3.png +libs/math/doc/sf_and_dist/equations/dist_tutorial4.png +libs/math/doc/sf_and_dist/equations/ellint10.png +libs/math/doc/sf_and_dist/equations/ellint11.png +libs/math/doc/sf_and_dist/equations/ellint12.png +libs/math/doc/sf_and_dist/equations/ellint13.png +libs/math/doc/sf_and_dist/equations/ellint14.png +libs/math/doc/sf_and_dist/equations/ellint15.png +libs/math/doc/sf_and_dist/equations/ellint16.png +libs/math/doc/sf_and_dist/equations/ellint17.png +libs/math/doc/sf_and_dist/equations/ellint18.png +libs/math/doc/sf_and_dist/equations/ellint19.png +libs/math/doc/sf_and_dist/equations/ellint1.png +libs/math/doc/sf_and_dist/equations/ellint20.png +libs/math/doc/sf_and_dist/equations/ellint21.png +libs/math/doc/sf_and_dist/equations/ellint22.png +libs/math/doc/sf_and_dist/equations/ellint23.png +libs/math/doc/sf_and_dist/equations/ellint24.png +libs/math/doc/sf_and_dist/equations/ellint25.png +libs/math/doc/sf_and_dist/equations/ellint26.png +libs/math/doc/sf_and_dist/equations/ellint2.png +libs/math/doc/sf_and_dist/equations/ellint3.png +libs/math/doc/sf_and_dist/equations/ellint4.png +libs/math/doc/sf_and_dist/equations/ellint5.png +libs/math/doc/sf_and_dist/equations/ellint6.png +libs/math/doc/sf_and_dist/equations/ellint7.png +libs/math/doc/sf_and_dist/equations/ellint8.png +libs/math/doc/sf_and_dist/equations/ellint9.png +libs/math/doc/sf_and_dist/equations/erf1.png +libs/math/doc/sf_and_dist/equations/erf2.png +libs/math/doc/sf_and_dist/equations/error1.png +libs/math/doc/sf_and_dist/equations/error2.png +libs/math/doc/sf_and_dist/equations/expint_i_1.png +libs/math/doc/sf_and_dist/equations/expint_i_2.png +libs/math/doc/sf_and_dist/equations/expint_i_3.png +libs/math/doc/sf_and_dist/equations/expint_i_4.png +libs/math/doc/sf_and_dist/equations/expint_n_1.png +libs/math/doc/sf_and_dist/equations/expint_n_2.png +libs/math/doc/sf_and_dist/equations/expint_n_3.png +libs/math/doc/sf_and_dist/equations/expint_n_4.png +libs/math/doc/sf_and_dist/equations/expint_n_5.png +libs/math/doc/sf_and_dist/equations/exponential_dist_ref1.png +libs/math/doc/sf_and_dist/equations/fisher_pdf.png +libs/math/doc/sf_and_dist/equations/fraction1.png +libs/math/doc/sf_and_dist/equations/fraction2.png +libs/math/doc/sf_and_dist/equations/fraction3.png +libs/math/doc/sf_and_dist/equations/fraction4.png +libs/math/doc/sf_and_dist/equations/gamm1.png +libs/math/doc/sf_and_dist/equations/gamm2.png +libs/math/doc/sf_and_dist/equations/gamm3.png +libs/math/doc/sf_and_dist/equations/gamm4.png +libs/math/doc/sf_and_dist/equations/gamm5.png +libs/math/doc/sf_and_dist/equations/gamma_dist_ref1.png +libs/math/doc/sf_and_dist/equations/gamma_dist_ref2.png +libs/math/doc/sf_and_dist/equations/gamma_ratio0.png +libs/math/doc/sf_and_dist/equations/gamma_ratio1.png +libs/math/doc/sf_and_dist/equations/hazard.png +libs/math/doc/sf_and_dist/equations/hermite_0.png +libs/math/doc/sf_and_dist/equations/hermite_1.png +libs/math/doc/sf_and_dist/equations/hypergeometric1.png +libs/math/doc/sf_and_dist/equations/hypergeometric2.png +libs/math/doc/sf_and_dist/equations/hypergeometric3.png +libs/math/doc/sf_and_dist/equations/hypergeometric4.png +libs/math/doc/sf_and_dist/equations/hypergeometric5.png +libs/math/doc/sf_and_dist/equations/hypergeometric6.png +libs/math/doc/sf_and_dist/equations/hypot2.png +libs/math/doc/sf_and_dist/equations/hypot.png +libs/math/doc/sf_and_dist/equations/ibeta10.png +libs/math/doc/sf_and_dist/equations/ibeta11.png +libs/math/doc/sf_and_dist/equations/ibeta12.png +libs/math/doc/sf_and_dist/equations/ibeta1.png +libs/math/doc/sf_and_dist/equations/ibeta2.png +libs/math/doc/sf_and_dist/equations/ibeta3.png +libs/math/doc/sf_and_dist/equations/ibeta4.png +libs/math/doc/sf_and_dist/equations/ibeta5.png +libs/math/doc/sf_and_dist/equations/ibeta6.png +libs/math/doc/sf_and_dist/equations/ibeta7.png +libs/math/doc/sf_and_dist/equations/ibeta8.png +libs/math/doc/sf_and_dist/equations/ibeta_inv1.png +libs/math/doc/sf_and_dist/equations/ibeta_inv2.png +libs/math/doc/sf_and_dist/equations/ibeta_inv3.png +libs/math/doc/sf_and_dist/equations/ibeta_inv4.png +libs/math/doc/sf_and_dist/equations/ibeta_inv5.png +libs/math/doc/sf_and_dist/equations/ibeta_inv6.png +libs/math/doc/sf_and_dist/equations/ibeta_inv7.png +libs/math/doc/sf_and_dist/equations/ibeta_inv8.png +libs/math/doc/sf_and_dist/equations/igamma10.png +libs/math/doc/sf_and_dist/equations/igamma11.png +libs/math/doc/sf_and_dist/equations/igamma12.png +libs/math/doc/sf_and_dist/equations/igamma13.png +libs/math/doc/sf_and_dist/equations/igamma16.png +libs/math/doc/sf_and_dist/equations/igamma17.png +libs/math/doc/sf_and_dist/equations/igamma18.png +libs/math/doc/sf_and_dist/equations/igamma19.png +libs/math/doc/sf_and_dist/equations/igamma1f.png +libs/math/doc/sf_and_dist/equations/igamma1.png +libs/math/doc/sf_and_dist/equations/igamma2f.png +libs/math/doc/sf_and_dist/equations/igamma2.png +libs/math/doc/sf_and_dist/equations/igamma3.png +libs/math/doc/sf_and_dist/equations/igamma4.png +libs/math/doc/sf_and_dist/equations/igamma5.png +libs/math/doc/sf_and_dist/equations/igamma6.png +libs/math/doc/sf_and_dist/equations/igamma7.png +libs/math/doc/sf_and_dist/equations/igamma8.png +libs/math/doc/sf_and_dist/equations/igamma9.png +libs/math/doc/sf_and_dist/equations/laguerre_0.png +libs/math/doc/sf_and_dist/equations/laguerre_1.png +libs/math/doc/sf_and_dist/equations/laguerre_2.png +libs/math/doc/sf_and_dist/equations/laguerre_3.png +libs/math/doc/sf_and_dist/equations/lanczos0a.png +libs/math/doc/sf_and_dist/equations/lanczos0b.png +libs/math/doc/sf_and_dist/equations/lanczos0.png +libs/math/doc/sf_and_dist/equations/lanczos1.png +libs/math/doc/sf_and_dist/equations/lanczos2.png +libs/math/doc/sf_and_dist/equations/lanczos3.png +libs/math/doc/sf_and_dist/equations/lanczos4.png +libs/math/doc/sf_and_dist/equations/lanczos5.png +libs/math/doc/sf_and_dist/equations/lanczos6.png +libs/math/doc/sf_and_dist/equations/lanczos7.png +libs/math/doc/sf_and_dist/equations/laplace_pdf.png +libs/math/doc/sf_and_dist/equations/legendre_0.png +libs/math/doc/sf_and_dist/equations/legendre_1b.png +libs/math/doc/sf_and_dist/equations/legendre_1.png +libs/math/doc/sf_and_dist/equations/legendre_2.png +libs/math/doc/sf_and_dist/equations/legendre_3.png +libs/math/doc/sf_and_dist/equations/legendre_4.png +libs/math/doc/sf_and_dist/equations/legendre_5.png +libs/math/doc/sf_and_dist/equations/lgamm1.png +libs/math/doc/sf_and_dist/equations/lgamm2.png +libs/math/doc/sf_and_dist/equations/lgamm3.png +libs/math/doc/sf_and_dist/equations/lgamm4.png +libs/math/doc/sf_and_dist/equations/lgamm5.png +libs/math/doc/sf_and_dist/equations/lgamm6.png +libs/math/doc/sf_and_dist/equations/log1pseries.png +libs/math/doc/sf_and_dist/equations/lognormal_ref.png +libs/math/doc/sf_and_dist/equations/mbessel10.png +libs/math/doc/sf_and_dist/equations/mbessel11.png +libs/math/doc/sf_and_dist/equations/mbessel12.png +libs/math/doc/sf_and_dist/equations/mbessel13.png +libs/math/doc/sf_and_dist/equations/mbessel14.png +libs/math/doc/sf_and_dist/equations/mbessel15.png +libs/math/doc/sf_and_dist/equations/mbessel16.png +libs/math/doc/sf_and_dist/equations/mbessel1.png +libs/math/doc/sf_and_dist/equations/mbessel2.png +libs/math/doc/sf_and_dist/equations/mbessel3.png +libs/math/doc/sf_and_dist/equations/mbessel4.png +libs/math/doc/sf_and_dist/equations/mbessel5.png +libs/math/doc/sf_and_dist/equations/mbessel6.png +libs/math/doc/sf_and_dist/equations/mbessel7.png +libs/math/doc/sf_and_dist/equations/mbessel8.png +libs/math/doc/sf_and_dist/equations/mbessel9.png +libs/math/doc/sf_and_dist/equations/nc_beta_ref1.png +libs/math/doc/sf_and_dist/equations/nc_beta_ref2.png +libs/math/doc/sf_and_dist/equations/nc_beta_ref3.png +libs/math/doc/sf_and_dist/equations/nc_beta_ref4.png +libs/math/doc/sf_and_dist/equations/nc_chi_squ_ref1.png +libs/math/doc/sf_and_dist/equations/nc_chi_squ_ref2.png +libs/math/doc/sf_and_dist/equations/nc_chi_squ_ref3.png +libs/math/doc/sf_and_dist/equations/nc_chi_squ_ref4.png +libs/math/doc/sf_and_dist/equations/nc_chi_squ_ref5.png +libs/math/doc/sf_and_dist/equations/nc_chi_squ_ref6.png +libs/math/doc/sf_and_dist/equations/nc_chi_squ_ref7.png +libs/math/doc/sf_and_dist/equations/nc_f_ref1.png +libs/math/doc/sf_and_dist/equations/nc_f_ref2.png +libs/math/doc/sf_and_dist/equations/nc_t_ref1.png +libs/math/doc/sf_and_dist/equations/nc_t_ref2.png +libs/math/doc/sf_and_dist/equations/nc_t_ref3.png +libs/math/doc/sf_and_dist/equations/nc_t_ref4.png +libs/math/doc/sf_and_dist/equations/nc_t_ref5.png +libs/math/doc/sf_and_dist/equations/neg_binomial_ref.png +libs/math/doc/sf_and_dist/equations/normal_ref1.png +libs/math/doc/sf_and_dist/equations/poisson_ref1.png +libs/math/doc/sf_and_dist/equations/roots1.png +libs/math/doc/sf_and_dist/equations/roots2.png +libs/math/doc/sf_and_dist/equations/roots3.png +libs/math/doc/sf_and_dist/equations/roots4.png +libs/math/doc/sf_and_dist/equations/sbessel1.png +libs/math/doc/sf_and_dist/equations/sbessel2.png +libs/math/doc/sf_and_dist/equations/sbessel5.png +libs/math/doc/sf_and_dist/equations/special_functions_blurb15.png +libs/math/doc/sf_and_dist/equations/special_functions_blurb17.png +libs/math/doc/sf_and_dist/equations/special_functions_blurb18.png +libs/math/doc/sf_and_dist/equations/special_functions_blurb1.png +libs/math/doc/sf_and_dist/equations/special_functions_blurb20.png +libs/math/doc/sf_and_dist/equations/special_functions_blurb22.png +libs/math/doc/sf_and_dist/equations/special_functions_blurb5.png +libs/math/doc/sf_and_dist/equations/special_functions_blurb6.png +libs/math/doc/sf_and_dist/equations/special_functions_blurb7.png +libs/math/doc/sf_and_dist/equations/spherical_0.png +libs/math/doc/sf_and_dist/equations/spherical_1.png +libs/math/doc/sf_and_dist/equations/spherical_2.png +libs/math/doc/sf_and_dist/equations/spherical_3.png +libs/math/doc/sf_and_dist/equations/students_t_dist.png +libs/math/doc/sf_and_dist/equations/students_t_ref1.png +libs/math/doc/sf_and_dist/equations/zeta1.png +libs/math/doc/sf_and_dist/equations/zeta2.png +libs/math/doc/sf_and_dist/equations/zeta3.png +libs/math/doc/sf_and_dist/equations/zeta4.png +libs/math/doc/sf_and_dist/equations/zeta5.png +libs/math/doc/sf_and_dist/graphs/acosh.png +libs/math/doc/sf_and_dist/graphs/asinh.png +libs/math/doc/sf_and_dist/graphs/atanh.png +libs/math/doc/sf_and_dist/graphs/bernoulli_cdf.png +libs/math/doc/sf_and_dist/graphs/bernoulli_pdf.png +libs/math/doc/sf_and_dist/graphs/beta_pdf.png +libs/math/doc/sf_and_dist/graphs/beta.png +libs/math/doc/sf_and_dist/graphs/binomial_pdf_1.png +libs/math/doc/sf_and_dist/graphs/binomial_pdf_2.png +libs/math/doc/sf_and_dist/graphs/binomial_pdf_3.png +libs/math/doc/sf_and_dist/graphs/binomial_pdf.png +libs/math/doc/sf_and_dist/graphs/binomial_quantile_1.png +libs/math/doc/sf_and_dist/graphs/cauchy_pdf1.png +libs/math/doc/sf_and_dist/graphs/cauchy_pdf2.png +libs/math/doc/sf_and_dist/graphs/cbrt.png +libs/math/doc/sf_and_dist/graphs/cdf.png +libs/math/doc/sf_and_dist/graphs/chi_squared_pdf.png +libs/math/doc/sf_and_dist/graphs/cyl_bessel_i.png +libs/math/doc/sf_and_dist/graphs/cyl_bessel_j.png +libs/math/doc/sf_and_dist/graphs/cyl_bessel_k.png +libs/math/doc/sf_and_dist/graphs/cyl_neumann.png +libs/math/doc/sf_and_dist/graphs/digamma.png +libs/math/doc/sf_and_dist/graphs/ellint_1.png +libs/math/doc/sf_and_dist/graphs/ellint_2.png +libs/math/doc/sf_and_dist/graphs/ellint_3.png +libs/math/doc/sf_and_dist/graphs/ellint_carlson.png +libs/math/doc/sf_and_dist/graphs/erfc_inv.png +libs/math/doc/sf_and_dist/graphs/erfc.png +libs/math/doc/sf_and_dist/graphs/erf_inv.png +libs/math/doc/sf_and_dist/graphs/erf.png +libs/math/doc/sf_and_dist/graphs/expint2.png +libs/math/doc/sf_and_dist/graphs/expint_i.png +libs/math/doc/sf_and_dist/graphs/expm1.png +libs/math/doc/sf_and_dist/graphs/exponential_pdf.png +libs/math/doc/sf_and_dist/graphs/exp_on_r.png +libs/math/doc/sf_and_dist/graphs/extreme_value_pdf1.png +libs/math/doc/sf_and_dist/graphs/extreme_value_pdf2.png +libs/math/doc/sf_and_dist/graphs/fisher_f_pdf.png +libs/math/doc/sf_and_dist/graphs/gamma1_pdf.png +libs/math/doc/sf_and_dist/graphs/gamma2_pdf.png +libs/math/doc/sf_and_dist/graphs/gamma_p.png +libs/math/doc/sf_and_dist/graphs/gamma_q.png +libs/math/doc/sf_and_dist/graphs/hermite.png +libs/math/doc/sf_and_dist/graphs/hyperbolic.png +libs/math/doc/sf_and_dist/graphs/hypergeometric_pdf_1.png +libs/math/doc/sf_and_dist/graphs/hypergeometric_pdf_2.png +libs/math/doc/sf_and_dist/graphs/ibeta.png +libs/math/doc/sf_and_dist/graphs/im_exp_on_c.png +libs/math/doc/sf_and_dist/graphs/laguerre.png +libs/math/doc/sf_and_dist/graphs/laplace_pdf_mu.png +libs/math/doc/sf_and_dist/graphs/laplace_pdf_sigma.png +libs/math/doc/sf_and_dist/graphs/legendre_p.png +libs/math/doc/sf_and_dist/graphs/legendre_q.png +libs/math/doc/sf_and_dist/graphs/lgamma.png +libs/math/doc/sf_and_dist/graphs/log1p.png +libs/math/doc/sf_and_dist/graphs/logistic_pdf.png +libs/math/doc/sf_and_dist/graphs/lognormal_pdf1.png +libs/math/doc/sf_and_dist/graphs/lognormal_pdf2.png +libs/math/doc/sf_and_dist/graphs/nc_beta_pdf.png +libs/math/doc/sf_and_dist/graphs/nccs_pdf.png +libs/math/doc/sf_and_dist/graphs/nc_f_pdf.png +libs/math/doc/sf_and_dist/graphs/nc_t_pdf.png +libs/math/doc/sf_and_dist/graphs/negative_binomial_pdf_1.png +libs/math/doc/sf_and_dist/graphs/negative_binomial_pdf_2.png +libs/math/doc/sf_and_dist/graphs/normal_pdf.png +libs/math/doc/sf_and_dist/graphs/pareto_pdf1.png +libs/math/doc/sf_and_dist/graphs/pareto_pdf2.png +libs/math/doc/sf_and_dist/graphs/pdf.png +libs/math/doc/sf_and_dist/graphs/poisson_pdf_1.png +libs/math/doc/sf_and_dist/graphs/powm1.png +libs/math/doc/sf_and_dist/graphs/quantile.png +libs/math/doc/sf_and_dist/graphs/rayleigh_cdf.png +libs/math/doc/sf_and_dist/graphs/rayleigh_pdf.png +libs/math/doc/sf_and_dist/graphs/remez-2.png +libs/math/doc/sf_and_dist/graphs/remez-3.png +libs/math/doc/sf_and_dist/graphs/remez-4.png +libs/math/doc/sf_and_dist/graphs/remez-5.png +libs/math/doc/sf_and_dist/graphs/sinc_pi_and_sinhc_pi_on_r.png +libs/math/doc/sf_and_dist/graphs/sinc_pi.png +libs/math/doc/sf_and_dist/graphs/sinhc_pi.png +libs/math/doc/sf_and_dist/graphs/sph_bessel.png +libs/math/doc/sf_and_dist/graphs/sph_neumann.png +libs/math/doc/sf_and_dist/graphs/sqrt1pm1.png +libs/math/doc/sf_and_dist/graphs/students_t_pdf.png +libs/math/doc/sf_and_dist/graphs/survival_inv.png +libs/math/doc/sf_and_dist/graphs/survival.png +libs/math/doc/sf_and_dist/graphs/tgamma_delta_ratio.png +libs/math/doc/sf_and_dist/graphs/tgamma.png +libs/math/doc/sf_and_dist/graphs/triangular_cdf.png +libs/math/doc/sf_and_dist/graphs/triangular_pdf.png +libs/math/doc/sf_and_dist/graphs/trigonometric.png +libs/math/doc/sf_and_dist/graphs/uniform_cdf.png +libs/math/doc/sf_and_dist/graphs/uniform_pdf.png +libs/math/doc/sf_and_dist/graphs/weibull_pdf1.png +libs/math/doc/sf_and_dist/graphs/weibull_pdf2.png +libs/math/doc/sf_and_dist/graphs/zeta1.png +libs/math/doc/sf_and_dist/graphs/zeta2.png +libs/math/doc/sf_and_dist/html/index.html +libs/math/doc/sf_and_dist/html/math_toolkit/backgrounders.html +libs/math/doc/sf_and_dist/html/math_toolkit/backgrounders/implementation.html +libs/math/doc/sf_and_dist/html/math_toolkit/backgrounders/lanczos.html +libs/math/doc/sf_and_dist/html/math_toolkit/backgrounders/refs.html +libs/math/doc/sf_and_dist/html/math_toolkit/backgrounders/relative_error.html +libs/math/doc/sf_and_dist/html/math_toolkit/backgrounders/remez.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dist_algorithms.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/bernoulli_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/beta_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/binomial_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/cauchy_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/chi_squared_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/exp_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/extreme_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/f_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/gamma_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/hypergeometric_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/laplace_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/logistic_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/lognormal_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/nc_beta_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/nc_chi_squared_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/nc_f_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/nc_t_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/negative_binomial_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/normal_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/pareto.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/poisson_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/rayleigh.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/students_t_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/triangular_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/uniform_dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/weibull.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/dist_ref/nmp.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/future.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/dist_params.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/overview/complements.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/overview/generic.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/overview/headers.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/overview.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/overview/objects.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/overview/parameters.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/overview/summary.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/variates.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/binom_eg/binom_conf.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/binom_eg/binomial_coinflip_example.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/binom_eg/binomial_quiz_example.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/binom_eg/binom_size_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/binom_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/cs_eg/chi_sq_intervals.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/cs_eg/chi_sq_size.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/cs_eg/chi_sq_test.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/cs_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/c_sharp.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/dist_construct_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/error_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/f_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/find_eg/find_location_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/find_eg/find_mean_and_sd_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/find_eg/find_scale_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/find_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/nag_library.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/nccs_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/nccs_eg/nccs_power_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/neg_binom_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/neg_binom_eg/negative_binomial_example1.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/neg_binom_eg/negative_binomial_example2.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/neg_binom_eg/neg_binom_conf.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/neg_binom_eg/neg_binom_size_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/normal_example.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/normal_example/normal_misc.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/st_eg.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/st_eg/paired_st.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/st_eg/tut_mean_intervals.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/st_eg/tut_mean_size.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/st_eg/tut_mean_test.html +libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg/st_eg/two_sample_students_t.html +libs/math/doc/sf_and_dist/html/math_toolkit/extern_c/c99.html +libs/math/doc/sf_and_dist/html/math_toolkit/extern_c.html +libs/math/doc/sf_and_dist/html/math_toolkit/extern_c/tr1.html +libs/math/doc/sf_and_dist/html/math_toolkit/extern_c/tr1_ref.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/building.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/compilers_overview.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/contact.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/directories.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/error_handling.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/history1.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/intro.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/namespaces.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/navigation.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/perf_over.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/pol_overview.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/result_type.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/threads.html +libs/math/doc/sf_and_dist/html/math_toolkit/main_overview/tr1.html +libs/math/doc/sf_and_dist/html/math_toolkit/perf/comparisons.html +libs/math/doc/sf_and_dist/html/math_toolkit/perf/comp_compilers.html +libs/math/doc/sf_and_dist/html/math_toolkit/perf/getting_best.html +libs/math/doc/sf_and_dist/html/math_toolkit/perf.html +libs/math/doc/sf_and_dist/html/math_toolkit/perf/interp.html +libs/math/doc/sf_and_dist/html/math_toolkit/perf/perf_over.html +libs/math/doc/sf_and_dist/html/math_toolkit/perf/perf_test_app.html +libs/math/doc/sf_and_dist/html/math_toolkit/perf/tuning.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_overview.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref/assert_undefined.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref/discrete_quant_ref.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref/error_handling_policies.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref/internal_promotion.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref/iteration_pol.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref/namespace_pol.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref/policy_defaults.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref/pol_ref_ref.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_ref/precision_pol.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial/ad_hoc_dist_policies.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial/ad_hoc_sf_policies.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial/changing_policy_defaults.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial/namespace_policies.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial/policy_tut_defaults.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial/policy_usage.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial/understand_dis_quant.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial/user_def_err_pol.html +libs/math/doc/sf_and_dist/html/math_toolkit/policy/pol_tutorial/what_is_a_policy.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/bessel/bessel.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/bessel/bessel_over.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/bessel.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/bessel/mbessel.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/bessel/sph_bessel.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/ellint/ellint_1.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/ellint/ellint_2.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/ellint/ellint_3.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/ellint/ellint_carlson.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/ellint/ellint_intro.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/ellint.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/expint/expint_i.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/expint/expint_n.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/expint.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/factorials.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/factorials/sf_binomial.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/factorials/sf_double_factorial.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/factorials/sf_factorial.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/factorials/sf_falling_factorial.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/factorials/sf_rising_factorial.html +libs/math/doc/sf_and_dist/html/math_toolkit/special.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/inv_hyper/acosh.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/inv_hyper/asinh.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/inv_hyper/atanh.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/inv_hyper.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/inv_hyper/inv_hyper_over.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/powers/cbrt.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/powers/ct_pow.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/powers/expm1.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/powers.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/powers/hypot.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/powers/log1p.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/powers/powm1.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/powers/sqrt1pm1.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_beta/beta_derivative.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_beta/beta_function.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_beta.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_beta/ibeta_function.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_beta/ibeta_inv_function.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_erf/error_function.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_erf/error_inv.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_erf.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/digamma.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/gamma_derivatives.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/gamma_ratios.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/igamma.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/igamma_inv.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/lgamma.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/tgamma.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_poly/hermite.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_poly.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_poly/laguerre.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_poly/legendre.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_poly/sph_harm.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sinc.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sinc/sinc_overview.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sinc/sinc_pi.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/sinc/sinhc_pi.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/zetas.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/zetas/zeta.html +libs/math/doc/sf_and_dist/html/math_toolkit/status/compilers.html +libs/math/doc/sf_and_dist/html/math_toolkit/status/credits.html +libs/math/doc/sf_and_dist/html/math_toolkit/status/history1.html +libs/math/doc/sf_and_dist/html/math_toolkit/status.html +libs/math/doc/sf_and_dist/html/math_toolkit/status/issues.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals1/cf.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals1/constants.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals1.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals1/minima.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals1/rational.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals1/roots2.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals1/roots.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals1/series_evaluation.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals2/error_test.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals2.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals2/minimax.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals2/polynomials.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals2/test_data.html +libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals_overview.html +libs/math/doc/sf_and_dist/html/math_toolkit/using_udt/archetypes.html +libs/math/doc/sf_and_dist/html/math_toolkit/using_udt/concepts.html +libs/math/doc/sf_and_dist/html/math_toolkit/using_udt/dist_concept.html +libs/math/doc/sf_and_dist/html/math_toolkit/using_udt.html +libs/math/doc/sf_and_dist/html/math_toolkit/using_udt/use_mpfr.html +libs/math/doc/sf_and_dist/html/math_toolkit/using_udt/use_ntl.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/fpclass.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/next_float/float_advance.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/next_float/float_distance.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/next_float/float_next.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/next_float/float_prior.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/next_float.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/next_float/nextafter.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/rounding.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/rounding/modf.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/rounding/round.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/rounding/trunc.html +libs/math/doc/sf_and_dist/html/math_toolkit/utils/sign_functions.html +libs/math/example/binomial_coinflip_example.cpp +libs/math/example/binomial_confidence_limits.cpp +libs/math/example/binomial_example_nag.cpp +libs/math/example/binomial_quiz_example.cpp +libs/math/example/binomial_sample_sizes.cpp +libs/math/example/chi_square_std_dev_test.cpp +libs/math/example/distribution_construction.cpp +libs/math/example/error_handling_example.cpp +libs/math/example/find_location_example.cpp +libs/math/example/find_mean_and_sd_normal.cpp +libs/math/example/find_scale_example.cpp +libs/math/example/f_test.cpp +libs/math/example/nc_chi_sq_example.cpp +libs/math/example/negative_binomial_example1.cpp +libs/math/example/neg_binom_confidence_limits.cpp +libs/math/example/neg_binomial_sample_sizes.cpp +libs/math/example/normal_misc_examples.cpp +libs/math/example/students_t_single_sample.cpp +libs/math/example/students_t_two_samples.cpp +libs/math/index.html +libs/math/octonion/graphics/octonion_blurb17.jpeg +libs/math/octonion/octonion_test.cpp +libs/math/octonion/output_more.txt +libs/math/octonion/output.txt +libs/math/quaternion/HSO3.hpp +libs/math/quaternion/HSO3SO4.cpp +libs/math/quaternion/HSO4.hpp +libs/math/quaternion/output_more.txt +libs/math/quaternion/output.txt +libs/math/quaternion/quaternion_test.cpp +libs/math/quaternion/TQE_EA.pdf +libs/math/quaternion/TQE.pdf +libs/math/test/common_factor_test.cpp +libs/math/test/compile_test/distribution_concept_check.cpp +libs/math/test/mpfr_concept_check.cpp +libs/math/test/ntl_concept_check.cpp +libs/math/test/std_real_concept_check.cpp +libs/math/tools/lanczos_generator.cpp +libs/mpi/doc/netpipe.png +libs/mpl/doc/index.html +libs/mpl/doc/refmanual/accumulate.html +libs/mpl/doc/refmanual/acknowledgements.html +libs/mpl/doc/refmanual/advance.html +libs/mpl/doc/refmanual/algorithms-concepts.html +libs/mpl/doc/refmanual/algorithms.html +libs/mpl/doc/refmanual/always.html +libs/mpl/doc/refmanual/and.html +libs/mpl/doc/refmanual/apply.html +libs/mpl/doc/refmanual/apply-wrap.html +libs/mpl/doc/refmanual/arg.html +libs/mpl/doc/refmanual/arithmetic-operations.html +libs/mpl/doc/refmanual/assert.html +libs/mpl/doc/refmanual/assert-msg.html +libs/mpl/doc/refmanual/assert-not.html +libs/mpl/doc/refmanual/assert-relation.html +libs/mpl/doc/refmanual/asserts.html +libs/mpl/doc/refmanual/associative-sequence.html +libs/mpl/doc/refmanual/at-c.html +libs/mpl/doc/refmanual/at.html +libs/mpl/doc/refmanual/aux-lambda-support.html +libs/mpl/doc/refmanual/back-extensible-sequence.html +libs/mpl/doc/refmanual/back.html +libs/mpl/doc/refmanual/back-inserter.html +libs/mpl/doc/refmanual/begin.html +libs/mpl/doc/refmanual/bidirectional-iterator.html +libs/mpl/doc/refmanual/bidirectional-sequence.html +libs/mpl/doc/refmanual/bind.html +libs/mpl/doc/refmanual/bitand.html +libs/mpl/doc/refmanual/bitor.html +libs/mpl/doc/refmanual/bitwise-operations.html +libs/mpl/doc/refmanual/bitxor.html +libs/mpl/doc/refmanual/bool.html +libs/mpl/doc/refmanual/broken-compiler-workarounds.html +libs/mpl/doc/refmanual/categorized-index-concepts.html +libs/mpl/doc/refmanual/categorized-index.html +libs/mpl/doc/refmanual/cfg-no-has-xxx.html +libs/mpl/doc/refmanual/cfg-no-preprocessed-headers.html +libs/mpl/doc/refmanual/char.html +libs/mpl/doc/refmanual/classes.html +libs/mpl/doc/refmanual/clear.html +libs/mpl/doc/refmanual/comparisons.html +libs/mpl/doc/refmanual/components.html +libs/mpl/doc/refmanual/composition-and-argument-binding.html +libs/mpl/doc/refmanual/concepts.html +libs/mpl/doc/refmanual/configuration.html +libs/mpl/doc/refmanual/contains.html +libs/mpl/doc/refmanual/copy.html +libs/mpl/doc/refmanual/copy-if.html +libs/mpl/doc/refmanual/count.html +libs/mpl/doc/refmanual/count-if.html +libs/mpl/doc/refmanual/c-str.html +libs/mpl/doc/refmanual/data-types-concepts.html +libs/mpl/doc/refmanual/data-types.html +libs/mpl/doc/refmanual/data-types-miscellaneous.html +libs/mpl/doc/refmanual/deque.html +libs/mpl/doc/refmanual/deref.html +libs/mpl/doc/refmanual/distance.html +libs/mpl/doc/refmanual/divides.html +libs/mpl/doc/refmanual/empty-base.html +libs/mpl/doc/refmanual/empty.html +libs/mpl/doc/refmanual/empty-sequence.html +libs/mpl/doc/refmanual/end.html +libs/mpl/doc/refmanual/equal.html +libs/mpl/doc/refmanual/equal-to.html +libs/mpl/doc/refmanual/erase.html +libs/mpl/doc/refmanual/erase-key.html +libs/mpl/doc/refmanual/eval-if-c.html +libs/mpl/doc/refmanual/eval-if.html +libs/mpl/doc/refmanual/extensible-associative-sequence.html +libs/mpl/doc/refmanual/extensible-sequence.html +libs/mpl/doc/refmanual/filter-view.html +libs/mpl/doc/refmanual/find.html +libs/mpl/doc/refmanual/find-if.html +libs/mpl/doc/refmanual/fold.html +libs/mpl/doc/refmanual/for-each.html +libs/mpl/doc/refmanual/forward-iterator.html +libs/mpl/doc/refmanual/forward-sequence.html +libs/mpl/doc/refmanual/front-extensible-sequence.html +libs/mpl/doc/refmanual/front.html +libs/mpl/doc/refmanual/front-inserter.html +libs/mpl/doc/refmanual/greater-equal.html +libs/mpl/doc/refmanual/greater.html +libs/mpl/doc/refmanual/has-key.html +libs/mpl/doc/refmanual/has-xxx-trait-def.html +libs/mpl/doc/refmanual/has-xxx-trait-named-def.html +libs/mpl/doc/refmanual.html +libs/mpl/doc/refmanual/identity.html +libs/mpl/doc/refmanual/if-c.html +libs/mpl/doc/refmanual/if.html +libs/mpl/doc/refmanual/inherit.html +libs/mpl/doc/refmanual/inherit-linearly.html +libs/mpl/doc/refmanual/inserter-class.html +libs/mpl/doc/refmanual/inserter.html +libs/mpl/doc/refmanual/inserters.html +libs/mpl/doc/refmanual/insert.html +libs/mpl/doc/refmanual/insert-range.html +libs/mpl/doc/refmanual/integral-c.html +libs/mpl/doc/refmanual/integral-constant.html +libs/mpl/doc/refmanual/integral-sequence-wrapper.html +libs/mpl/doc/refmanual/int.html +libs/mpl/doc/refmanual/intrinsic-metafunctions.html +libs/mpl/doc/refmanual/introspection.html +libs/mpl/doc/refmanual/invocation.html +libs/mpl/doc/refmanual/is-sequence.html +libs/mpl/doc/refmanual/iteration-algorithms.html +libs/mpl/doc/refmanual/iterator-category.html +libs/mpl/doc/refmanual/iterator-metafunctions.html +libs/mpl/doc/refmanual/iterator-range.html +libs/mpl/doc/refmanual/iterators-concepts.html +libs/mpl/doc/refmanual/iterators.html +libs/mpl/doc/refmanual/iter-fold.html +libs/mpl/doc/refmanual/joint-view.html +libs/mpl/doc/refmanual/key-type.html +libs/mpl/doc/refmanual/lambda-expression.html +libs/mpl/doc/refmanual/lambda.html +libs/mpl/doc/refmanual/less-equal.html +libs/mpl/doc/refmanual/less.html +libs/mpl/doc/refmanual/limit-list-size.html +libs/mpl/doc/refmanual/limit-map-size.html +libs/mpl/doc/refmanual/limit-metafunction-arity.html +libs/mpl/doc/refmanual/limit-set-size.html +libs/mpl/doc/refmanual/limit-string-size.html +libs/mpl/doc/refmanual/limit-unrolling.html +libs/mpl/doc/refmanual/limit-vector-size.html +libs/mpl/doc/refmanual/list-c.html +libs/mpl/doc/refmanual/list.html +libs/mpl/doc/refmanual/logical-operations.html +libs/mpl/doc/refmanual/long.html +libs/mpl/doc/refmanual/lower-bound.html +libs/mpl/doc/refmanual/macros.html +libs/mpl/doc/refmanual/map.html +libs/mpl/doc/refmanual/max-element.html +libs/mpl/doc/refmanual/max.html +libs/mpl/doc/refmanual/metafunction-class.html +libs/mpl/doc/refmanual/metafunction.html +libs/mpl/doc/refmanual/metafunctions-concepts.html +libs/mpl/doc/refmanual/metafunctions.html +libs/mpl/doc/refmanual/min-element.html +libs/mpl/doc/refmanual/min.html +libs/mpl/doc/refmanual/minus.html +libs/mpl/doc/refmanual/miscellaneous.html +libs/mpl/doc/refmanual/modulus.html +libs/mpl/doc/refmanual/negate.html +libs/mpl/doc/refmanual/next.html +libs/mpl/doc/refmanual/not-equal-to.html +libs/mpl/doc/refmanual/not.html +libs/mpl/doc/refmanual/numeric-cast.html +libs/mpl/doc/refmanual/numeric.html +libs/mpl/doc/refmanual/numeric-metafunction.html +libs/mpl/doc/refmanual/order.html +libs/mpl/doc/refmanual/or.html +libs/mpl/doc/refmanual/pair.html +libs/mpl/doc/refmanual/partition.html +libs/mpl/doc/refmanual.pdf +libs/mpl/doc/refmanual/placeholder-expression.html +libs/mpl/doc/refmanual/placeholders.html +libs/mpl/doc/refmanual/plus.html +libs/mpl/doc/refmanual/pop-back.html +libs/mpl/doc/refmanual/pop-front.html +libs/mpl/doc/refmanual/prior.html +libs/mpl/doc/refmanual/protect.html +libs/mpl/doc/refmanual/push-back.html +libs/mpl/doc/refmanual/push-front.html +libs/mpl/doc/refmanual/querying-algorithms.html +libs/mpl/doc/refmanual/quote.html +libs/mpl/doc/refmanual/random-access-iterator.html +libs/mpl/doc/refmanual/random-access-sequence.html +libs/mpl/doc/refmanual/range-c.html +libs/mpl/doc/refmanual/refmanual_toc.html +libs/mpl/doc/refmanual/remove.html +libs/mpl/doc/refmanual/remove-if.html +libs/mpl/doc/refmanual/replace.html +libs/mpl/doc/refmanual/replace-if.html +libs/mpl/doc/refmanual/reverse-copy.html +libs/mpl/doc/refmanual/reverse-copy-if.html +libs/mpl/doc/refmanual/reverse-fold.html +libs/mpl/doc/refmanual/reverse.html +libs/mpl/doc/refmanual/reverse-iter-fold.html +libs/mpl/doc/refmanual/reverse-partition.html +libs/mpl/doc/refmanual/reverse-remove.html +libs/mpl/doc/refmanual/reverse-remove-if.html +libs/mpl/doc/refmanual/reverse-replace.html +libs/mpl/doc/refmanual/reverse-replace-if.html +libs/mpl/doc/refmanual/reverse-stable-partition.html +libs/mpl/doc/refmanual/reverse-transform.html +libs/mpl/doc/refmanual/reverse-unique.html +libs/mpl/doc/refmanual/reversible-algorithm.html +libs/mpl/doc/refmanual/runtime-algorithms.html +libs/mpl/doc/refmanual/sequences.html +libs/mpl/doc/refmanual/sequence-tag.html +libs/mpl/doc/refmanual/set-c.html +libs/mpl/doc/refmanual/set.html +libs/mpl/doc/refmanual/shift-left.html +libs/mpl/doc/refmanual/shift-right.html +libs/mpl/doc/refmanual/single-view.html +libs/mpl/doc/refmanual/size.html +libs/mpl/doc/refmanual/sizeof.html +libs/mpl/doc/refmanual/size-t.html +libs/mpl/doc/refmanual/sort.html +libs/mpl/doc/refmanual/stable-partition.html +libs/mpl/doc/refmanual/string.html +libs/mpl/doc/refmanual/string-operations.html +libs/mpl/doc/refmanual/tag-dispatched-metafunction.html +libs/mpl/doc/refmanual/terminology.html +libs/mpl/doc/refmanual/times.html +libs/mpl/doc/refmanual/transformation-algorithms.html +libs/mpl/doc/refmanual/transform.html +libs/mpl/doc/refmanual/transform-view.html +libs/mpl/doc/refmanual/trivial.html +libs/mpl/doc/refmanual/trivial-metafunction.html +libs/mpl/doc/refmanual/trivial-metafunctions-summary.html +libs/mpl/doc/refmanual/type-selection.html +libs/mpl/doc/refmanual/unique.html +libs/mpl/doc/refmanual/unpack-args.html +libs/mpl/doc/refmanual/upper-bound.html +libs/mpl/doc/refmanual/value-type.html +libs/mpl/doc/refmanual/variadic-sequence.html +libs/mpl/doc/refmanual/vector-c.html +libs/mpl/doc/refmanual/vector.html +libs/mpl/doc/refmanual/views.html +libs/mpl/doc/refmanual/void.html +libs/mpl/doc/refmanual/zip-view.html +libs/mpl/doc/style.css +libs/mpl/doc/tutorial/acknowledgements.html +libs/mpl/doc/tutorial/apply-lambda-semantics.html +libs/mpl/doc/tutorial/book_cover.png +libs/mpl/doc/tutorial/broken-integral-constant.html +libs/mpl/doc/tutorial/changelog-history.html +libs/mpl/doc/tutorial/changes-in-boost-1-32-0.html +libs/mpl/doc/tutorial/dependencies.html +libs/mpl/doc/tutorial/details.html +libs/mpl/doc/tutorial/dimensional-analysis.html +libs/mpl/doc/tutorial/eti.html +libs/mpl/doc/tutorial/exercises.html +libs/mpl/doc/tutorial/handling-placeholders.html +libs/mpl/doc/tutorial/higher-order.html +libs/mpl/doc/tutorial/implementing-addition-and.html +libs/mpl/doc/tutorial/implementing-division.html +libs/mpl/doc/tutorial/implementing.html +libs/mpl/doc/tutorial/incomplete-support-for.html +libs/mpl/doc/tutorial/iterator-protocol.html +libs/mpl/doc/tutorial/lambda-and-non.html +libs/mpl/doc/tutorial/lambda-details.html +libs/mpl/doc/tutorial/metafunction-composition.html +libs/mpl/doc/tutorial/miscellaneous.html +libs/mpl/doc/tutorial/more-lambda-capabilities.html +libs/mpl/doc/tutorial/numeric-metafunction.html +libs/mpl/doc/tutorial/partial-metafunction.html +libs/mpl/doc/tutorial/physical-structure.html +libs/mpl/doc/tutorial/placeholder-expression.html +libs/mpl/doc/tutorial/placeholders.html +libs/mpl/doc/tutorial/portability.html +libs/mpl/doc/tutorial/reference-manual.html +libs/mpl/doc/tutorial/renaming-cleanup.html +libs/mpl/doc/tutorial/representing-dimensions.html +libs/mpl/doc/tutorial/representing-quantities.html +libs/mpl/doc/tutorial/resources.html +libs/mpl/doc/tutorial/tag-dispatching-protocol.html +libs/mpl/doc/tutorial/technical-details.html +libs/mpl/doc/tutorial/the-apply-metafunction.html +libs/mpl/doc/tutorial/the-importance-of-being.html +libs/mpl/doc/tutorial/the-lambda-metafunction.html +libs/mpl/doc/tutorial/tutorial-metafunctions.html +libs/mpl/doc/tutorial/tutorial_toc.html +libs/mpl/example/fsm/player1.cpp +libs/mpl/index.html +libs/multi_array/doc/index.html +libs/multi_array/doc/iterator_categories.html +libs/multi_array/doc/matrix.gif +libs/multi_array/doc/notes.html +libs/multi_array/doc/reference.html +libs/multi_array/doc/test_cases.html +libs/multi_array/doc/user.html +libs/multi_array/test/access.cpp +libs/multi_array/test/assert.cpp +libs/multi_array/test/assign.cpp +libs/multi_array/test/assign_to_array.cpp +libs/multi_array/test/compare.cpp +libs/multi_array/test/concept_checks.cpp +libs/multi_array/test/constructors.cpp +libs/multi_array/test/fail_cbracket.cpp +libs/multi_array/test/fail_cdata.cpp +libs/multi_array/test/fail_citerator.cpp +libs/multi_array/test/fail_cparen.cpp +libs/multi_array/test/fail_criterator.cpp +libs/multi_array/test/fail_csubarray2.cpp +libs/multi_array/test/fail_csubarray3.cpp +libs/multi_array/test/fail_csubarray.cpp +libs/multi_array/test/fail_cview2.cpp +libs/multi_array/test/fail_cview3.cpp +libs/multi_array/test/fail_cview.cpp +libs/multi_array/test/fail_ref_cbracket.cpp +libs/multi_array/test/fail_ref_cdata.cpp +libs/multi_array/test/fail_ref_citerator.cpp +libs/multi_array/test/fail_ref_cparen.cpp +libs/multi_array/test/fail_ref_criterator.cpp +libs/multi_array/test/fail_ref_csubarray2.cpp +libs/multi_array/test/fail_ref_csubarray3.cpp +libs/multi_array/test/fail_ref_csubarray.cpp +libs/multi_array/test/fail_ref_cview2.cpp +libs/multi_array/test/fail_ref_cview3.cpp +libs/multi_array/test/fail_ref_cview.cpp +libs/multi_array/test/generative_tests.hpp +libs/multi_array/test/idxgen1.cpp +libs/multi_array/test/index_bases.cpp +libs/multi_array/test/iterators.cpp +libs/multi_array/test/range1.cpp +libs/multi_array/test/reshape.cpp +libs/multi_array/test/resize.cpp +libs/multi_array/test/slice.cpp +libs/multi_array/test/stl_interaction.cpp +libs/multi_array/test/storage_order_convert.cpp +libs/multi_array/test/storage_order.cpp +libs/multi_index/doc/acknowledgements.html +libs/multi_index/doc/compiler_specifics.html +libs/multi_index/doc/examples.html +libs/multi_index/doc/future_work.html +libs/multi_index/doc/hector.jpg +libs/multi_index/doc/index.html +libs/multi_index/doc/lopez.jpg +libs/multi_index/doc/next.gif +libs/multi_index/doc/perf_1o1s.png +libs/multi_index/doc/perf_1o.png +libs/multi_index/doc/perf_1s.png +libs/multi_index/doc/perf_2o1s.png +libs/multi_index/doc/perf_2o.png +libs/multi_index/doc/perf_3o.png +libs/multi_index/doc/performance.html +libs/multi_index/doc/prev.gif +libs/multi_index/doc/reference/hash_indices.html +libs/multi_index/doc/reference/index.html +libs/multi_index/doc/reference/indices.html +libs/multi_index/doc/reference/key_extraction.html +libs/multi_index/doc/reference/multi_index_container.html +libs/multi_index/doc/reference/ord_indices.html +libs/multi_index/doc/reference/rnd_indices.html +libs/multi_index/doc/reference/seq_indices.html +libs/multi_index/doc/release_notes.html +libs/multi_index/doc/style.css +libs/multi_index/doc/tests.html +libs/multi_index/doc/tutorial/basics.html +libs/multi_index/doc/tutorial/creation.html +libs/multi_index/doc/tutorial/debug.html +libs/multi_index/doc/tutorial/index.html +libs/multi_index/doc/tutorial/indices.html +libs/multi_index/doc/tutorial/key_extraction.html +libs/multi_index/doc/tutorial/techniques.html +libs/multi_index/doc/up.gif +libs/multi_index/example/basic.cpp +libs/multi_index/example/bimap.cpp +libs/multi_index/example/complex_structs.cpp +libs/multi_index/example/composite_keys.cpp +libs/multi_index/example/fun_key.cpp +libs/multi_index/example/hashed.cpp +libs/multi_index/example/ip_allocator.cpp +libs/multi_index/example/non_default_ctor.cpp +libs/multi_index/example/random_access.cpp +libs/multi_index/example/rearrange.cpp +libs/multi_index/example/sequenced.cpp +libs/multi_index/example/serialization.cpp +libs/multi_index/index.html +libs/multi_index/perf/test_perf.cpp +libs/multi_index/test/test_basic.cpp +libs/multi_index/test/test_capacity.cpp +libs/multi_index/test/test_comparison.cpp +libs/multi_index/test/test_composite_key.cpp +libs/multi_index/test/test_conv_iterators.cpp +libs/multi_index/test/test_copy_assignment.cpp +libs/multi_index/test/test_hash_ops.cpp +libs/multi_index/test/test_iterators.cpp +libs/multi_index/test/test_key_extractors.cpp +libs/multi_index/test/test_list_ops.cpp +libs/multi_index/test/test_modifiers.cpp +libs/multi_index/test/test_mpl_ops.cpp +libs/multi_index/test/test_observers.cpp +libs/multi_index/test/test_projection.cpp +libs/multi_index/test/test_range.cpp +libs/multi_index/test/test_rearrange.cpp +libs/multi_index/test/test_safe_mode.cpp +libs/multi_index/test/test_serialization1.cpp +libs/multi_index/test/test_serialization2.cpp +libs/multi_index/test/test_serialization3.cpp +libs/multi_index/test/test_set_ops.cpp +libs/multi_index/test/test_special_set_ops.cpp +libs/multi_index/test/test_update.cpp +libs/numeric/conversion/doc/html/boostbook.css +libs/numeric/conversion/doc/html/boost_numericconversion/bounds___traits_class.html +libs/numeric/conversion/doc/html/boost_numericconversion/conversion_traits___traits_class.html +libs/numeric/conversion/doc/html/boost_numericconversion/converter___function_object.html +libs/numeric/conversion/doc/html/boost_numericconversion/definitions.html +libs/numeric/conversion/doc/html/boost_numericconversion/improved_numeric_cast__.html +libs/numeric/conversion/doc/html/boost_numericconversion/numeric_converter_policy_classes.html +libs/numeric/conversion/doc/html/boost_numericconversion/type_requirements_and_user_defined_types_support.html +libs/numeric/conversion/doc/html/images/space.png +libs/numeric/conversion/doc/html/index.html +libs/numeric/conversion/doc/html/numeric_conversion/bibliography.html +libs/numeric/conversion/doc/html/numeric_conversion/history_and_acknowledgments.html +libs/numeric/conversion/index.html +libs/numeric/interval/doc/checking.htm +libs/numeric/interval/doc/comparisons.htm +libs/numeric/interval/doc/examples.htm +libs/numeric/interval/doc/guide.htm +libs/numeric/interval/doc/includes.htm +libs/numeric/interval/doc/interval.htm +libs/numeric/interval/doc/numbers.htm +libs/numeric/interval/doc/policies.htm +libs/numeric/interval/doc/rounding.htm +libs/numeric/interval/doc/todo.htm +libs/numeric/ublas/doc/banded.htm +libs/numeric/ublas/doc/blas.htm +libs/numeric/ublas/doc/bounded_array.htm +libs/numeric/ublas/doc/container_concept.htm +libs/numeric/ublas/doc/doxygen.css +libs/numeric/ublas/doc/expression_concept.htm +libs/numeric/ublas/doc/hermitian.htm +libs/numeric/ublas/doc/index.htm +libs/numeric/ublas/doc/iterator_concept.htm +libs/numeric/ublas/doc/js/jquery-1.3.2.min.js +libs/numeric/ublas/doc/js/jquery.toc-gw.js +libs/numeric/ublas/doc/matrix_expression.htm +libs/numeric/ublas/doc/matrix.htm +libs/numeric/ublas/doc/matrix_proxy.htm +libs/numeric/ublas/doc/matrix_sparse.htm +libs/numeric/ublas/doc/operations_overview.htm +libs/numeric/ublas/doc/options.htm +libs/numeric/ublas/doc/overview.htm +libs/numeric/ublas/doc/products.htm +libs/numeric/ublas/doc/range.htm +libs/numeric/ublas/doc/release_notes.htm +libs/numeric/ublas/doc/samples/ex_triangular.cpp +libs/numeric/ublas/doc/storage_concept.htm +libs/numeric/ublas/doc/storage_sparse.htm +libs/numeric/ublas/doc/symmetric.htm +libs/numeric/ublas/doc/triangular.htm +libs/numeric/ublas/doc/types_overview.htm +libs/numeric/ublas/doc/ublas.css +libs/numeric/ublas/doc/unbounded_array.htm +libs/numeric/ublas/doc/vector_expression.htm +libs/numeric/ublas/doc/vector.htm +libs/numeric/ublas/doc/vector_proxy.htm +libs/numeric/ublas/doc/vector_sparse.htm +libs/numeric/ublas/test/manual/test_move_semantics.cpp +libs/optional/doc/html/boostbook.css +libs/optional/doc/html/boost_optional/acknowledgments.html +libs/optional/doc/html/boost_optional/a_note_about_optional_bool_.html +libs/optional/doc/html/boost_optional/dependencies_and_portability.html +libs/optional/doc/html/boost_optional/detailed_semantics.html +libs/optional/doc/html/boost_optional/development.html +libs/optional/doc/html/boost_optional/examples.html +libs/optional/doc/html/boost_optional/exception_safety_guarantees.html +libs/optional/doc/html/boost_optional/implementation_notes.html +libs/optional/doc/html/boost_optional/in_place_factories.html +libs/optional/doc/html/boost_optional/optional_references.html +libs/optional/doc/html/boost_optional/rebinding_semantics_for_assignment_of_optional_references.html +libs/optional/doc/html/boost_optional/synopsis.html +libs/optional/doc/html/boost_optional/type_requirements.html +libs/optional/doc/html/images/callouts/R.png +libs/optional/doc/html/images/space.png +libs/optional/doc/html/index.html +libs/parameter/doc/html/index.html +libs/parameter/doc/html/python.html +libs/parameter/doc/html/reference.html +libs/parameter/doc/html/rst.css +libs/parameter/doc/html/vellipsis.gif +libs/pool/doc/concepts.html +libs/pool/doc/implementation/alignment.html +libs/pool/doc/implementation/ct_gcd_lcm.html +libs/pool/doc/implementation/for.html +libs/pool/doc/implementation/gcd_lcm.html +libs/pool/doc/implementation/guard.html +libs/pool/doc/implementation/mutex.html +libs/pool/doc/implementation/object_pool.html +libs/pool/doc/implementation/pool_alloc.html +libs/pool/doc/implementation/pool_construct.html +libs/pool/doc/implementation/pool.html +libs/pool/doc/implementation/simple_segregated_storage.html +libs/pool/doc/implementation/singleton.html +libs/pool/doc/implementation/singleton_pool.html +libs/pool/doc/index.html +libs/pool/doc/interfaces.html +libs/pool/doc/interfaces/object_pool.html +libs/pool/doc/interfaces/pool_alloc.html +libs/pool/doc/interfaces/pool.html +libs/pool/doc/interfaces/simple_segregated_storage.html +libs/pool/doc/interfaces/singleton_pool.html +libs/pool/doc/interfaces/user_allocator.html +libs/pool/doc/pool.css +libs/preprocessor/doc/acknowledgements.html +libs/preprocessor/doc/bibliography.html +libs/preprocessor/doc/contents.html +libs/preprocessor/doc/data/arrays.html +libs/preprocessor/doc/data.html +libs/preprocessor/doc/data/lists.html +libs/preprocessor/doc/data/sequences.html +libs/preprocessor/doc/data/tuples.html +libs/preprocessor/doc/examples/array_arithmetic.c +libs/preprocessor/doc/examples/catch_builtin.cpp +libs/preprocessor/doc/examples/delay.c +libs/preprocessor/doc/examples/duffs_device.c +libs/preprocessor/doc/examples.html +libs/preprocessor/doc/examples/is_integral.cpp +libs/preprocessor/doc/examples/linear_fib.c +libs/preprocessor/doc/headers/arithmetic/add.html +libs/preprocessor/doc/headers/arithmetic/dec.html +libs/preprocessor/doc/headers/arithmetic/div.html +libs/preprocessor/doc/headers/arithmetic.html +libs/preprocessor/doc/headers/arithmetic/inc.html +libs/preprocessor/doc/headers/arithmetic/mod.html +libs/preprocessor/doc/headers/arithmetic/mul.html +libs/preprocessor/doc/headers/arithmetic/sub.html +libs/preprocessor/doc/headers/array/data.html +libs/preprocessor/doc/headers/array/elem.html +libs/preprocessor/doc/headers/array.html +libs/preprocessor/doc/headers/array/insert.html +libs/preprocessor/doc/headers/array/pop_back.html +libs/preprocessor/doc/headers/array/pop_front.html +libs/preprocessor/doc/headers/array/push_back.html +libs/preprocessor/doc/headers/array/push_front.html +libs/preprocessor/doc/headers/array/remove.html +libs/preprocessor/doc/headers/array/replace.html +libs/preprocessor/doc/headers/array/reverse.html +libs/preprocessor/doc/headers/array/size.html +libs/preprocessor/doc/headers/assert_msg.html +libs/preprocessor/doc/headers/cat.html +libs/preprocessor/doc/headers/comma.html +libs/preprocessor/doc/headers/comma_if.html +libs/preprocessor/doc/headers/comparison/equal.html +libs/preprocessor/doc/headers/comparison/greater_equal.html +libs/preprocessor/doc/headers/comparison/greater.html +libs/preprocessor/doc/headers/comparison.html +libs/preprocessor/doc/headers/comparison/less_equal.html +libs/preprocessor/doc/headers/comparison/less.html +libs/preprocessor/doc/headers/comparison/not_equal.html +libs/preprocessor/doc/headers/config/limits.html +libs/preprocessor/doc/headers/control/deduce_d.html +libs/preprocessor/doc/headers/control/expr_if.html +libs/preprocessor/doc/headers/control/expr_iif.html +libs/preprocessor/doc/headers/control.html +libs/preprocessor/doc/headers/control/if.html +libs/preprocessor/doc/headers/control/iif.html +libs/preprocessor/doc/headers/control/while.html +libs/preprocessor/doc/headers/debug/assert.html +libs/preprocessor/doc/headers/debug.html +libs/preprocessor/doc/headers/debug/line.html +libs/preprocessor/doc/headers/dec.html +libs/preprocessor/doc/headers/empty.html +libs/preprocessor/doc/headers/enum.html +libs/preprocessor/doc/headers/enum_params.html +libs/preprocessor/doc/headers/enum_shifted.html +libs/preprocessor/doc/headers/enum_shifted_params.html +libs/preprocessor/doc/headers/epwad.html +libs/preprocessor/doc/headers/epwd.html +libs/preprocessor/doc/headers/expand.html +libs/preprocessor/doc/headers/expr_if.html +libs/preprocessor/doc/headers/facilities/apply.html +libs/preprocessor/doc/headers/facilities/empty.html +libs/preprocessor/doc/headers/facilities/expand.html +libs/preprocessor/doc/headers/facilities.html +libs/preprocessor/doc/headers/facilities/identity.html +libs/preprocessor/doc/headers/facilities/intercept.html +libs/preprocessor/doc/headers/for.html +libs/preprocessor/doc/headers.html +libs/preprocessor/doc/headers/identity.html +libs/preprocessor/doc/headers/if.html +libs/preprocessor/doc/headers/inc.html +libs/preprocessor/doc/headers/iterate.html +libs/preprocessor/doc/headers/iteration.html +libs/preprocessor/doc/headers/iteration/iterate.html +libs/preprocessor/doc/headers/iteration/local.html +libs/preprocessor/doc/headers/iteration/self.html +libs/preprocessor/doc/headers/library.html +libs/preprocessor/doc/headers/limits.html +libs/preprocessor/doc/headers/list/adt.html +libs/preprocessor/doc/headers/list/append.html +libs/preprocessor/doc/headers/list/at.html +libs/preprocessor/doc/headers/list/cat.html +libs/preprocessor/doc/headers/list/enum.html +libs/preprocessor/doc/headers/list/filter.html +libs/preprocessor/doc/headers/list/first_n.html +libs/preprocessor/doc/headers/list/fold_left.html +libs/preprocessor/doc/headers/list/fold_right.html +libs/preprocessor/doc/headers/list/for_each.html +libs/preprocessor/doc/headers/list/for_each_i.html +libs/preprocessor/doc/headers/list/for_each_product.html +libs/preprocessor/doc/headers/list.html +libs/preprocessor/doc/headers/list/rest_n.html +libs/preprocessor/doc/headers/list/reverse.html +libs/preprocessor/doc/headers/list/size.html +libs/preprocessor/doc/headers/list/to_tuple.html +libs/preprocessor/doc/headers/list/transform.html +libs/preprocessor/doc/headers/logical/and.html +libs/preprocessor/doc/headers/logical/bitand.html +libs/preprocessor/doc/headers/logical/bitnor.html +libs/preprocessor/doc/headers/logical/bitor.html +libs/preprocessor/doc/headers/logical/bitxor.html +libs/preprocessor/doc/headers/logical/bool.html +libs/preprocessor/doc/headers/logical/compl.html +libs/preprocessor/doc/headers/logical.html +libs/preprocessor/doc/headers/logical/nor.html +libs/preprocessor/doc/headers/logical/not.html +libs/preprocessor/doc/headers/logical/or.html +libs/preprocessor/doc/headers/logical/xor.html +libs/preprocessor/doc/headers/max.html +libs/preprocessor/doc/headers/min.html +libs/preprocessor/doc/headers/preprocessor.html +libs/preprocessor/doc/headers/punctuation/comma.html +libs/preprocessor/doc/headers/punctuation/comma_if.html +libs/preprocessor/doc/headers/punctuation.html +libs/preprocessor/doc/headers/punctuation/paren.html +libs/preprocessor/doc/headers/punctuation/paren_if.html +libs/preprocessor/doc/headers/repeat_2nd.html +libs/preprocessor/doc/headers/repeat_3rd.html +libs/preprocessor/doc/headers/repeat_from_to_2nd.html +libs/preprocessor/doc/headers/repeat_from_to_3rd.html +libs/preprocessor/doc/headers/repeat_from_to.html +libs/preprocessor/doc/headers/repeat.html +libs/preprocessor/doc/headers/repetition/deduce_r.html +libs/preprocessor/doc/headers/repetition/deduce_z.html +libs/preprocessor/doc/headers/repetition/enum_binary_params.html +libs/preprocessor/doc/headers/repetition/enum.html +libs/preprocessor/doc/headers/repetition/enum_params.html +libs/preprocessor/doc/headers/repetition/enum_shifted.html +libs/preprocessor/doc/headers/repetition/enum_shifted_params.html +libs/preprocessor/doc/headers/repetition/enum_trailing.html +libs/preprocessor/doc/headers/repetition/enum_trailing_params.html +libs/preprocessor/doc/headers/repetition/epwad.html +libs/preprocessor/doc/headers/repetition/epwd.html +libs/preprocessor/doc/headers/repetition/esbp.html +libs/preprocessor/doc/headers/repetition/etbp.html +libs/preprocessor/doc/headers/repetition/for.html +libs/preprocessor/doc/headers/repetition.html +libs/preprocessor/doc/headers/repetition/repeat_from_to.html +libs/preprocessor/doc/headers/repetition/repeat.html +libs/preprocessor/doc/headers/selection.html +libs/preprocessor/doc/headers/selection/max.html +libs/preprocessor/doc/headers/selection/min.html +libs/preprocessor/doc/headers/seq/cat.html +libs/preprocessor/doc/headers/seq/elem.html +libs/preprocessor/doc/headers/seq/enum.html +libs/preprocessor/doc/headers/seq/filter.html +libs/preprocessor/doc/headers/seq/first_n.html +libs/preprocessor/doc/headers/seq/fold_left.html +libs/preprocessor/doc/headers/seq/fold_right.html +libs/preprocessor/doc/headers/seq/for_each.html +libs/preprocessor/doc/headers/seq/for_each_i.html +libs/preprocessor/doc/headers/seq/for_each_product.html +libs/preprocessor/doc/headers/seq.html +libs/preprocessor/doc/headers/seq/insert.html +libs/preprocessor/doc/headers/seq/pop_back.html +libs/preprocessor/doc/headers/seq/pop_front.html +libs/preprocessor/doc/headers/seq/push_back.html +libs/preprocessor/doc/headers/seq/push_front.html +libs/preprocessor/doc/headers/seq/remove.html +libs/preprocessor/doc/headers/seq/replace.html +libs/preprocessor/doc/headers/seq/rest_n.html +libs/preprocessor/doc/headers/seq/reverse.html +libs/preprocessor/doc/headers/seq/seq.html +libs/preprocessor/doc/headers/seq/size.html +libs/preprocessor/doc/headers/seq/subseq.html +libs/preprocessor/doc/headers/seq/to_array.html +libs/preprocessor/doc/headers/seq/to_tuple.html +libs/preprocessor/doc/headers/seq/transform.html +libs/preprocessor/doc/headers/slot/counter.html +libs/preprocessor/doc/headers/slot.html +libs/preprocessor/doc/headers/slot/slot.html +libs/preprocessor/doc/headers/stringize.html +libs/preprocessor/doc/headers/tuple/eat.html +libs/preprocessor/doc/headers/tuple/elem.html +libs/preprocessor/doc/headers/tuple.html +libs/preprocessor/doc/headers/tuple/rem.html +libs/preprocessor/doc/headers/tuple/reverse.html +libs/preprocessor/doc/headers/tuple/to_list.html +libs/preprocessor/doc/headers/tuple/to_seq.html +libs/preprocessor/doc/headers/while.html +libs/preprocessor/doc/headers/wstringize.html +libs/preprocessor/doc/index.html +libs/preprocessor/doc/miscellanea.html +libs/preprocessor/doc/ref/add_d.html +libs/preprocessor/doc/ref/add.html +libs/preprocessor/doc/ref/and.html +libs/preprocessor/doc/ref/apply.html +libs/preprocessor/doc/ref/array_data.html +libs/preprocessor/doc/ref/array_elem.html +libs/preprocessor/doc/ref/array_insert_d.html +libs/preprocessor/doc/ref/array_insert.html +libs/preprocessor/doc/ref/array_pop_back.html +libs/preprocessor/doc/ref/array_pop_back_z.html +libs/preprocessor/doc/ref/array_pop_front.html +libs/preprocessor/doc/ref/array_pop_front_z.html +libs/preprocessor/doc/ref/array_push_back.html +libs/preprocessor/doc/ref/array_push_front.html +libs/preprocessor/doc/ref/array_remove_d.html +libs/preprocessor/doc/ref/array_remove.html +libs/preprocessor/doc/ref/array_replace_d.html +libs/preprocessor/doc/ref/array_replace.html +libs/preprocessor/doc/ref/array_reverse.html +libs/preprocessor/doc/ref/array_size.html +libs/preprocessor/doc/ref/assert.html +libs/preprocessor/doc/ref/assert_msg.html +libs/preprocessor/doc/ref/assign_slot.html +libs/preprocessor/doc/ref/bitand.html +libs/preprocessor/doc/ref/bitnor.html +libs/preprocessor/doc/ref/bitor.html +libs/preprocessor/doc/ref/bitxor.html +libs/preprocessor/doc/ref/bool.html +libs/preprocessor/doc/ref/cat.html +libs/preprocessor/doc/ref/comma.html +libs/preprocessor/doc/ref/comma_if.html +libs/preprocessor/doc/ref/compl.html +libs/preprocessor/doc/ref/config_extended_line_info.html +libs/preprocessor/doc/ref/counter.html +libs/preprocessor/doc/ref/dec.html +libs/preprocessor/doc/ref/deduce_d.html +libs/preprocessor/doc/ref/deduce_r.html +libs/preprocessor/doc/ref/deduce_z.html +libs/preprocessor/doc/ref/div_d.html +libs/preprocessor/doc/ref/div.html +libs/preprocessor/doc/ref/empty.html +libs/preprocessor/doc/ref/enum_binary_params.html +libs/preprocessor/doc/ref/enum_binary_params_z.html +libs/preprocessor/doc/ref/enum.html +libs/preprocessor/doc/ref/enum_params.html +libs/preprocessor/doc/ref/enum_params_with_a_default.html +libs/preprocessor/doc/ref/enum_params_with_defaults.html +libs/preprocessor/doc/ref/enum_params_z.html +libs/preprocessor/doc/ref/enum_shifted.html +libs/preprocessor/doc/ref/enum_shifted_params.html +libs/preprocessor/doc/ref/enum_shifted_params_z.html +libs/preprocessor/doc/ref/enum_shifted_z.html +libs/preprocessor/doc/ref/enum_trailing.html +libs/preprocessor/doc/ref/enum_trailing_params.html +libs/preprocessor/doc/ref/enum_trailing_params_z.html +libs/preprocessor/doc/ref/enum_trailing_z.html +libs/preprocessor/doc/ref/enum_z.html +libs/preprocessor/doc/ref/equal_d.html +libs/preprocessor/doc/ref/equal.html +libs/preprocessor/doc/ref/esbp.html +libs/preprocessor/doc/ref/esbpz.html +libs/preprocessor/doc/ref/etbp.html +libs/preprocessor/doc/ref/etbpz.html +libs/preprocessor/doc/ref/expand.html +libs/preprocessor/doc/ref/expr_if.html +libs/preprocessor/doc/ref/expr_iif.html +libs/preprocessor/doc/ref/filename_x.html +libs/preprocessor/doc/ref/for.html +libs/preprocessor/doc/ref/for_r.html +libs/preprocessor/doc/ref/frame_finish.html +libs/preprocessor/doc/ref/frame_flags.html +libs/preprocessor/doc/ref/frame_iteration.html +libs/preprocessor/doc/ref/frame_start.html +libs/preprocessor/doc/ref/greater_d.html +libs/preprocessor/doc/ref/greater_equal_d.html +libs/preprocessor/doc/ref/greater_equal.html +libs/preprocessor/doc/ref/greater.html +libs/preprocessor/doc/ref.html +libs/preprocessor/doc/ref/identity.html +libs/preprocessor/doc/ref/if.html +libs/preprocessor/doc/ref/iif.html +libs/preprocessor/doc/ref/inc.html +libs/preprocessor/doc/ref/include_self.html +libs/preprocessor/doc/ref/indirect_self.html +libs/preprocessor/doc/ref/intercept.html +libs/preprocessor/doc/ref/is_iterating.html +libs/preprocessor/doc/ref/is_selfish.html +libs/preprocessor/doc/ref/iterate.html +libs/preprocessor/doc/ref/iteration_depth.html +libs/preprocessor/doc/ref/iteration_finish.html +libs/preprocessor/doc/ref/iteration_flags.html +libs/preprocessor/doc/ref/iteration.html +libs/preprocessor/doc/ref/iteration_limits.html +libs/preprocessor/doc/ref/iteration_params_x.html +libs/preprocessor/doc/ref/iteration_start.html +libs/preprocessor/doc/ref/less_d.html +libs/preprocessor/doc/ref/less_equal_d.html +libs/preprocessor/doc/ref/less_equal.html +libs/preprocessor/doc/ref/less.html +libs/preprocessor/doc/ref/limit_dim.html +libs/preprocessor/doc/ref/limit_for.html +libs/preprocessor/doc/ref/limit_iteration_dim.html +libs/preprocessor/doc/ref/limit_iteration.html +libs/preprocessor/doc/ref/limit_mag.html +libs/preprocessor/doc/ref/limit_repeat.html +libs/preprocessor/doc/ref/limit_seq.html +libs/preprocessor/doc/ref/limit_slot_count.html +libs/preprocessor/doc/ref/limit_slot_sig.html +libs/preprocessor/doc/ref/limit_tuple.html +libs/preprocessor/doc/ref/limit_while.html +libs/preprocessor/doc/ref/line.html +libs/preprocessor/doc/ref/list_append_d.html +libs/preprocessor/doc/ref/list_append.html +libs/preprocessor/doc/ref/list_at_d.html +libs/preprocessor/doc/ref/list_at.html +libs/preprocessor/doc/ref/list_cat_d.html +libs/preprocessor/doc/ref/list_cat.html +libs/preprocessor/doc/ref/list_cons.html +libs/preprocessor/doc/ref/list_enum.html +libs/preprocessor/doc/ref/list_enum_r.html +libs/preprocessor/doc/ref/list_filter_d.html +libs/preprocessor/doc/ref/list_filter.html +libs/preprocessor/doc/ref/list_first.html +libs/preprocessor/doc/ref/list_first_n_d.html +libs/preprocessor/doc/ref/list_first_n.html +libs/preprocessor/doc/ref/list_fold_left_2nd_d.html +libs/preprocessor/doc/ref/list_fold_left_2nd.html +libs/preprocessor/doc/ref/list_fold_left_d.html +libs/preprocessor/doc/ref/list_fold_left_d_old.html +libs/preprocessor/doc/ref/list_fold_left.html +libs/preprocessor/doc/ref/list_fold_right_2nd_d.html +libs/preprocessor/doc/ref/list_fold_right_2nd.html +libs/preprocessor/doc/ref/list_fold_right_d.html +libs/preprocessor/doc/ref/list_fold_right_d_old.html +libs/preprocessor/doc/ref/list_fold_right.html +libs/preprocessor/doc/ref/list_for_each.html +libs/preprocessor/doc/ref/list_for_each_i.html +libs/preprocessor/doc/ref/list_for_each_i_r.html +libs/preprocessor/doc/ref/list_for_each_product.html +libs/preprocessor/doc/ref/list_for_each_product_r.html +libs/preprocessor/doc/ref/list_for_each_r.html +libs/preprocessor/doc/ref/list_is_cons.html +libs/preprocessor/doc/ref/list_is_nil.html +libs/preprocessor/doc/ref/list_nil.html +libs/preprocessor/doc/ref/list_rest.html +libs/preprocessor/doc/ref/list_rest_n_d.html +libs/preprocessor/doc/ref/list_rest_n.html +libs/preprocessor/doc/ref/list_reverse_d.html +libs/preprocessor/doc/ref/list_reverse.html +libs/preprocessor/doc/ref/list_size_d.html +libs/preprocessor/doc/ref/list_size.html +libs/preprocessor/doc/ref/list_to_tuple.html +libs/preprocessor/doc/ref/list_to_tuple_r.html +libs/preprocessor/doc/ref/list_transform_d.html +libs/preprocessor/doc/ref/list_transform.html +libs/preprocessor/doc/ref/local_iterate.html +libs/preprocessor/doc/ref/local_limits.html +libs/preprocessor/doc/ref/local_macro.html +libs/preprocessor/doc/ref/lparen.html +libs/preprocessor/doc/ref/lparen_if.html +libs/preprocessor/doc/ref/max_d.html +libs/preprocessor/doc/ref/max.html +libs/preprocessor/doc/ref/min_d.html +libs/preprocessor/doc/ref/min.html +libs/preprocessor/doc/ref/mod_d.html +libs/preprocessor/doc/ref/mod.html +libs/preprocessor/doc/ref/mul_d.html +libs/preprocessor/doc/ref/mul.html +libs/preprocessor/doc/ref/nil.html +libs/preprocessor/doc/ref/nor.html +libs/preprocessor/doc/ref/not_equal_d.html +libs/preprocessor/doc/ref/not_equal.html +libs/preprocessor/doc/ref/not.html +libs/preprocessor/doc/ref/or.html +libs/preprocessor/doc/ref/relative_finish.html +libs/preprocessor/doc/ref/relative_flags.html +libs/preprocessor/doc/ref/relative_iteration.html +libs/preprocessor/doc/ref/relative_start.html +libs/preprocessor/doc/ref/repeat_1st.html +libs/preprocessor/doc/ref/repeat_2nd.html +libs/preprocessor/doc/ref/repeat_3rd.html +libs/preprocessor/doc/ref/repeat_from_to_1st.html +libs/preprocessor/doc/ref/repeat_from_to_2nd.html +libs/preprocessor/doc/ref/repeat_from_to_3rd.html +libs/preprocessor/doc/ref/repeat_from_to_d.html +libs/preprocessor/doc/ref/repeat_from_to_d_z.html +libs/preprocessor/doc/ref/repeat_from_to.html +libs/preprocessor/doc/ref/repeat_from_to_z.html +libs/preprocessor/doc/ref/repeat.html +libs/preprocessor/doc/ref/repeat_z.html +libs/preprocessor/doc/ref/rparen.html +libs/preprocessor/doc/ref/rparen_if.html +libs/preprocessor/doc/ref/seq_cat.html +libs/preprocessor/doc/ref/seq_cat_s.html +libs/preprocessor/doc/ref/seq_elem.html +libs/preprocessor/doc/ref/seq_enum.html +libs/preprocessor/doc/ref/seq_filter.html +libs/preprocessor/doc/ref/seq_filter_s.html +libs/preprocessor/doc/ref/seq_first_n.html +libs/preprocessor/doc/ref/seq_fold_left.html +libs/preprocessor/doc/ref/seq_fold_left_s.html +libs/preprocessor/doc/ref/seq_fold_right.html +libs/preprocessor/doc/ref/seq_fold_right_s.html +libs/preprocessor/doc/ref/seq_for_each.html +libs/preprocessor/doc/ref/seq_for_each_i.html +libs/preprocessor/doc/ref/seq_for_each_i_r.html +libs/preprocessor/doc/ref/seq_for_each_product.html +libs/preprocessor/doc/ref/seq_for_each_product_r.html +libs/preprocessor/doc/ref/seq_for_each_r.html +libs/preprocessor/doc/ref/seq_head.html +libs/preprocessor/doc/ref/seq_insert.html +libs/preprocessor/doc/ref/seq_nil.html +libs/preprocessor/doc/ref/seq_pop_back.html +libs/preprocessor/doc/ref/seq_pop_front.html +libs/preprocessor/doc/ref/seq_push_back.html +libs/preprocessor/doc/ref/seq_push_front.html +libs/preprocessor/doc/ref/seq_remove.html +libs/preprocessor/doc/ref/seq_replace.html +libs/preprocessor/doc/ref/seq_rest_n.html +libs/preprocessor/doc/ref/seq_reverse.html +libs/preprocessor/doc/ref/seq_reverse_s.html +libs/preprocessor/doc/ref/seq_size.html +libs/preprocessor/doc/ref/seq_subseq.html +libs/preprocessor/doc/ref/seq_tail.html +libs/preprocessor/doc/ref/seq_to_array.html +libs/preprocessor/doc/ref/seq_to_tuple.html +libs/preprocessor/doc/ref/seq_transform.html +libs/preprocessor/doc/ref/seq_transform_s.html +libs/preprocessor/doc/ref/slot.html +libs/preprocessor/doc/ref/stringize.html +libs/preprocessor/doc/ref/sub_d.html +libs/preprocessor/doc/ref/sub.html +libs/preprocessor/doc/ref/tuple_eat.html +libs/preprocessor/doc/ref/tuple_elem.html +libs/preprocessor/doc/ref/tuple_rem_ctor.html +libs/preprocessor/doc/ref/tuple_rem.html +libs/preprocessor/doc/ref/tuple_reverse.html +libs/preprocessor/doc/ref/tuple_to_list.html +libs/preprocessor/doc/ref/tuple_to_seq.html +libs/preprocessor/doc/ref/update_counter.html +libs/preprocessor/doc/ref/value.html +libs/preprocessor/doc/ref/while_d.html +libs/preprocessor/doc/ref/while.html +libs/preprocessor/doc/ref/wstringize.html +libs/preprocessor/doc/ref/xor.html +libs/preprocessor/doc/styles.css +libs/preprocessor/doc/syntax.html +libs/preprocessor/doc/terms/evaluated.html +libs/preprocessor/doc/terms.html +libs/preprocessor/doc/terms/named_external.html +libs/preprocessor/doc/title.html +libs/preprocessor/doc/top.html +libs/preprocessor/doc/topics/evaluated_slots.html +libs/preprocessor/doc/topics/file_iteration.html +libs/preprocessor/doc/topics.html +libs/preprocessor/doc/topics/incompatible.html +libs/preprocessor/doc/topics/local_iteration.html +libs/preprocessor/doc/topics/motivation.html +libs/preprocessor/doc/topics/problems.html +libs/preprocessor/doc/topics/reentrancy.html +libs/preprocessor/doc/topics/techniques.html +libs/preprocessor/index.html +libs/program_options/index.html +libs/property_map/doc/associative_property_map.html +libs/property_map/doc/const_assoc_property_map.html +libs/property_map/doc/dynamic_property_map.html +libs/property_map/doc/identity_property_map.html +libs/property_map/doc/iterator_property_map.html +libs/property_map/doc/LvaluePropertyMap.html +libs/property_map/doc/property_map.html +libs/property_map/doc/ReadablePropertyMap.html +libs/property_map/doc/ReadWritePropertyMap.html +libs/property_map/doc/ref_property_map.html +libs/property_map/doc/shared_array_property_map.html +libs/property_map/doc/vector_property_map.html +libs/property_map/doc/WritablePropertyMap.html +libs/property_map/example/example1.cpp +libs/property_map/example/example3.cpp +libs/property_tree/index.html +libs/proto/index.html +libs/ptr_container/doc/associative_ptr_container.html +libs/ptr_container/doc/boost.png +libs/ptr_container/doc/conventions.html +libs/ptr_container/doc/default.css +libs/ptr_container/doc/examples.html +libs/ptr_container/doc/faq.html +libs/ptr_container/doc/guidelines.html +libs/ptr_container/doc/headers.html +libs/ptr_container/doc/indirect_fun.html +libs/ptr_container/doc/ptr_array.html +libs/ptr_container/doc/ptr_container.html +libs/ptr_container/doc/ptr_deque.html +libs/ptr_container/doc/ptr_inserter.html +libs/ptr_container/doc/ptr_list.html +libs/ptr_container/doc/ptr_map_adapter.html +libs/ptr_container/doc/ptr_map.html +libs/ptr_container/doc/ptr_multimap_adapter.html +libs/ptr_container/doc/ptr_multimap.html +libs/ptr_container/doc/ptr_multiset_adapter.html +libs/ptr_container/doc/ptr_multiset.html +libs/ptr_container/doc/ptr_sequence_adapter.html +libs/ptr_container/doc/ptr_set_adapter.html +libs/ptr_container/doc/ptr_set.html +libs/ptr_container/doc/ptr_vector.html +libs/ptr_container/doc/reference.html +libs/ptr_container/doc/reversible_ptr_container.html +libs/ptr_container/doc/tutorial.html +libs/ptr_container/index.html +libs/ptr_container/test/incomplete_type_test.cpp +libs/ptr_container/test/ptr_array.cpp +libs/ptr_container/test/simple_test.cpp +libs/ptr_container/test/tree_test.cpp +libs/ptr_container/test/tut1.cpp +libs/ptr_container/test/view_example.cpp +libs/python/doc/boost.css +libs/python/doc/building.html +libs/python/doc/building.rst +libs/python/doc/index.html +libs/python/doc/internals.html +libs/python/doc/internals.rst +libs/python/doc/news.html +libs/python/doc/projects.html +libs/python/doc/PyConDC_2003/bpl.html +libs/python/doc/PyConDC_2003/bpl.pdf +libs/python/doc/support.html +libs/python/doc/tutorial/doc/html/images/alert.png +libs/python/doc/tutorial/doc/html/images/smiley.png +libs/python/doc/tutorial/doc/html/index.html +libs/python/doc/tutorial/doc/html/python/embedding.html +libs/python/doc/tutorial/doc/html/python/exception.html +libs/python/doc/tutorial/doc/html/python/exposing.html +libs/python/doc/tutorial/doc/html/python/functions.html +libs/python/doc/tutorial/doc/html/python/hello.html +libs/python/doc/tutorial/doc/html/python/iterators.html +libs/python/doc/tutorial/doc/html/python/object.html +libs/python/doc/tutorial/doc/html/python/techniques.html +libs/python/doc/tutorial/index.html +libs/python/doc/v2/acknowledgments.html +libs/python/doc/v2/Apr2002.html +libs/python/doc/v2/args.html +libs/python/doc/v2/callbacks.html +libs/python/doc/v2/callbacks.txt +libs/python/doc/v2/call.html +libs/python/doc/v2/call_method.html +libs/python/doc/v2/CallPolicies.html +libs/python/doc/v2/class.html +libs/python/doc/v2/configuration.html +libs/python/doc/v2/copy_const_reference.html +libs/python/doc/v2/copy_non_const_reference.html +libs/python/doc/v2/data_members.html +libs/python/doc/v2/default_call_policies.html +libs/python/doc/v2/def.html +libs/python/doc/v2/definitions.html +libs/python/doc/v2/def_visitor.html +libs/python/doc/v2/Dereferenceable.html +libs/python/doc/v2/dict.html +libs/python/doc/v2/docstring_options.html +libs/python/doc/v2/enum.html +libs/python/doc/v2/errors.html +libs/python/doc/v2/exception_translator.html +libs/python/doc/v2/exec.html +libs/python/doc/v2/extract.html +libs/python/doc/v2/Extractor.html +libs/python/doc/v2/faq.html +libs/python/doc/v2/feb2002.html +libs/python/doc/v2/function_doc_signature.html +libs/python/doc/v2/handle.html +libs/python/doc/v2/has_back_reference.html +libs/python/doc/v2/HolderGenerator.html +libs/python/doc/v2/implicit.html +libs/python/doc/v2/import.html +libs/python/doc/v2/indexing.html +libs/python/doc/v2/init.html +libs/python/doc/v2/instance_holder.html +libs/python/doc/v2/iterator.html +libs/python/doc/v2/Jun2002.html +libs/python/doc/v2/list.html +libs/python/doc/v2/long.html +libs/python/doc/v2/lvalue_from_pytype.html +libs/python/doc/v2/make_function.html +libs/python/doc/v2/manage_new_object.html +libs/python/doc/v2/Mar2002.html +libs/python/doc/v2/May2002.html +libs/python/doc/v2/module.html +libs/python/doc/v2/numeric.html +libs/python/doc/v2/object.html +libs/python/doc/v2/ObjectWrapper.html +libs/python/doc/v2/opaque.html +libs/python/doc/v2/operators.html +libs/python/doc/v2/overloads.html +libs/python/doc/v2/pickle.html +libs/python/doc/v2/platforms.html +libs/python/doc/v2/pointee.html +libs/python/doc/v2/progress_reports.html +libs/python/doc/v2/ptr.html +libs/python/doc/v2/python.html +libs/python/doc/v2/pytype_function.html +libs/python/doc/v2/raw_function.html +libs/python/doc/v2/reference_existing_object.html +libs/python/doc/v2/reference.html +libs/python/doc/v2/register_ptr_to_python.html +libs/python/doc/v2/ResultConverter.html +libs/python/doc/v2/return_arg.html +libs/python/doc/v2/return_by_value.html +libs/python/doc/v2/return_internal_reference.html +libs/python/doc/v2/return_opaque_pointer.html +libs/python/doc/v2/return_value_policy.html +libs/python/doc/v2/scope.html +libs/python/doc/v2/slice.html +libs/python/doc/v2/ssize_t.html +libs/python/doc/v2/stl_iterator.html +libs/python/doc/v2/str.html +libs/python/doc/v2/to_python_converter.html +libs/python/doc/v2/to_python_indirect.html +libs/python/doc/v2/to_python_value.html +libs/python/doc/v2/tuple.html +libs/python/doc/v2/type_id.html +libs/python/doc/v2/with_custodian_and_ward.html +libs/python/doc/v2/wrapper.html +libs/python/example/quickstart/boost-build.jam +libs/python/example/quickstart/extending.cpp +libs/python/example/quickstart/Jamroot +libs/python/index.html +libs/python/pyste/doc/adding_new_methods.html +libs/python/pyste/doc/exporting_an_entire_header.html +libs/python/pyste/doc/global_variables.html +libs/python/pyste/doc/inserting_code.html +libs/python/pyste/doc/introduction.html +libs/python/pyste/doc/policies.html +libs/python/pyste/doc/renaming_and_excluding.html +libs/python/pyste/doc/running_pyste.html +libs/python/pyste/doc/smart_pointers.html +libs/python/pyste/doc/templates.html +libs/python/pyste/doc/the_interface_files.html +libs/python/pyste/doc/theme/bkd.gif +libs/python/pyste/doc/theme/bullet.gif +libs/python/pyste/doc/theme/l_arr.gif +libs/python/pyste/doc/theme/note.gif +libs/python/pyste/doc/theme/r_arr_disabled.gif +libs/python/pyste/doc/theme/r_arr.gif +libs/python/pyste/doc/theme/style.css +libs/python/pyste/doc/theme/u_arr.gif +libs/python/pyste/doc/wrappers.html +libs/python/pyste/index.html +libs/python/test/input_iterator.cpp +libs/python/test/iterator.cpp +libs/python/test/iterator.py +libs/python/test/map_indexing_suite.cpp +libs/python/test/map_indexing_suite.py +libs/python/test/pickle1.cpp +libs/python/test/pickle2.cpp +libs/python/test/pickle3.cpp +libs/python/test/pickle4.cpp +libs/python/test/vector_indexing_suite.cpp +libs/python/test/vector_indexing_suite.py +libs/python/todo.html +libs/random/index.html +libs/random/nondet_random.html +libs/random/nondet_random_speed.cpp +libs/random/random-concepts.html +libs/random/random_demo.cpp +libs/random/random-distributions.html +libs/random/random-generators.html +libs/random/random-misc.html +libs/random/random-performance.html +libs/random/random_speed.cpp +libs/random/random_test.cpp +libs/random/random-variate.html +libs/range/doc/boost_range.html +libs/range/doc/examples.html +libs/range/doc/faq.html +libs/range/doc/headers.html +libs/range/doc/history_ack.html +libs/range/doc/intro.html +libs/range/doc/mfc_atl.html +libs/range/doc/portability.html +libs/range/doc/range.html +libs/range/doc/style.css +libs/range/doc/style.html +libs/range/doc/upgrading.html +libs/range/doc/utility_class.html +libs/range/index.html +libs/range/test/algorithm_example.cpp +libs/range/test/array.cpp +libs/range/test/iterator_pair.cpp +libs/range/test/iterator_range.cpp +libs/range/test/reversible_range.cpp +libs/range/test/std_container.cpp +libs/range/test/string.cpp +libs/range/test/sub_range.cpp +libs/rational/index.html +libs/rational/rational.html +libs/regex/doc/gcc-performance.html +libs/regex/doc/html/boost_regex/background_information/acknowledgements.html +libs/regex/doc/html/boost_regex/background_information/examples.html +libs/regex/doc/html/boost_regex/background_information/faq.html +libs/regex/doc/html/boost_regex/background_information/futher.html +libs/regex/doc/html/boost_regex/background_information/headers.html +libs/regex/doc/html/boost_regex/background_information/history.html +libs/regex/doc/html/boost_regex/background_information.html +libs/regex/doc/html/boost_regex/background_information/locale.html +libs/regex/doc/html/boost_regex/background_information/performance.html +libs/regex/doc/html/boost_regex/background_information/redist.html +libs/regex/doc/html/boost_regex/background_information/standards.html +libs/regex/doc/html/boost_regex/background_information/thread_safety.html +libs/regex/doc/html/boost_regex/captures.html +libs/regex/doc/html/boost_regex/configuration/algorithm.html +libs/regex/doc/html/boost_regex/configuration/compiler.html +libs/regex/doc/html/boost_regex/configuration.html +libs/regex/doc/html/boost_regex/configuration/linkage.html +libs/regex/doc/html/boost_regex/configuration/locale.html +libs/regex/doc/html/boost_regex/configuration/tuning.html +libs/regex/doc/html/boost_regex/format/boost_format_syntax.html +libs/regex/doc/html/boost_regex/format.html +libs/regex/doc/html/boost_regex/format/perl_format.html +libs/regex/doc/html/boost_regex/format/sed_format.html +libs/regex/doc/html/boost_regex/install.html +libs/regex/doc/html/boost_regex/introduction_and_overview.html +libs/regex/doc/html/boost_regex/partial_matches.html +libs/regex/doc/html/boost_regex/ref/bad_expression.html +libs/regex/doc/html/boost_regex/ref/basic_regex.html +libs/regex/doc/html/boost_regex/ref/concepts/charT_concept.html +libs/regex/doc/html/boost_regex/ref/concepts.html +libs/regex/doc/html/boost_regex/ref/concepts/iterator_concepts.html +libs/regex/doc/html/boost_regex/ref/concepts/traits_concept.html +libs/regex/doc/html/boost_regex/ref/deprecated_interfaces.html +libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html +libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html +libs/regex/doc/html/boost_regex/ref/error_type.html +libs/regex/doc/html/boost_regex/ref.html +libs/regex/doc/html/boost_regex/ref/match_flag_type.html +libs/regex/doc/html/boost_regex/ref/match_results.html +libs/regex/doc/html/boost_regex/ref/non_std_strings.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/icu.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/intro.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html +libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html +libs/regex/doc/html/boost_regex/ref/posix.html +libs/regex/doc/html/boost_regex/ref/regex_iterator.html +libs/regex/doc/html/boost_regex/ref/regex_match.html +libs/regex/doc/html/boost_regex/ref/regex_replace.html +libs/regex/doc/html/boost_regex/ref/regex_search.html +libs/regex/doc/html/boost_regex/ref/regex_token_iterator.html +libs/regex/doc/html/boost_regex/ref/regex_traits.html +libs/regex/doc/html/boost_regex/ref/sub_match.html +libs/regex/doc/html/boost_regex/ref/syntax_option_type.html +libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html +libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html +libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html +libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html +libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html +libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html +libs/regex/doc/html/boost_regex/syntax/basic_extended.html +libs/regex/doc/html/boost_regex/syntax/basic_syntax.html +libs/regex/doc/html/boost_regex/syntax/character_classes.html +libs/regex/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html +libs/regex/doc/html/boost_regex/syntax/character_classes/std_char_clases.html +libs/regex/doc/html/boost_regex/syntax/collating_names/digraphs.html +libs/regex/doc/html/boost_regex/syntax/collating_names.html +libs/regex/doc/html/boost_regex/syntax/collating_names/named_unicode.html +libs/regex/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html +libs/regex/doc/html/boost_regex/syntax.html +libs/regex/doc/html/boost_regex/syntax/leftmost_longest_rule.html +libs/regex/doc/html/boost_regex/syntax/perl_syntax.html +libs/regex/doc/html/boost_regex/unicode.html +libs/regex/doc/html/index.html +libs/regex/doc/vc71-performance.html +libs/regex/example/grep/grep.cpp +libs/regex/example/snippets/captures_example.cpp +libs/regex/example/snippets/credit_card_example.cpp +libs/regex/example/snippets/partial_regex_grep.cpp +libs/regex/example/snippets/partial_regex_match.cpp +libs/regex/example/snippets/regex_grep_example_1.cpp +libs/regex/example/snippets/regex_grep_example_2.cpp +libs/regex/example/snippets/regex_grep_example_3.cpp +libs/regex/example/snippets/regex_grep_example_4.cpp +libs/regex/example/snippets/regex_iterator_example.cpp +libs/regex/example/snippets/regex_match_example.cpp +libs/regex/example/snippets/regex_merge_example.cpp +libs/regex/example/snippets/regex_replace_example.cpp +libs/regex/example/snippets/regex_search_example.cpp +libs/regex/example/snippets/regex_split_example_1.cpp +libs/regex/example/snippets/regex_split_example_2.cpp +libs/regex/example/snippets/regex_token_iterator_eg_1.cpp +libs/regex/example/snippets/regex_token_iterator_eg_2.cpp +libs/regex/example/timer/regex_timer.cpp +libs/regex/index.html +libs/regex/test/captures/captures_test.cpp +libs/regex/test/concepts/concept_check.cpp +libs/regex/test/pathology/bad_expression_test.cpp +libs/regex/test/pathology/recursion_test.cpp +libs/regex/test/regress/basic_tests.cpp +libs/regex/test/regress/main.cpp +libs/regex/test/regress/test_alt.cpp +libs/regex/test/regress/test_anchors.cpp +libs/regex/test/regress/test_asserts.cpp +libs/regex/test/regress/test_backrefs.cpp +libs/regex/test/regress/test_deprecated.cpp +libs/regex/test/regress/test_emacs.cpp +libs/regex/test/regress/test_escapes.cpp +libs/regex/test/regress/test_grep.cpp +libs/regex/test/regress/test_icu.cpp +libs/regex/test/regress/test_locale.cpp +libs/regex/test/regress/test_mfc.cpp +libs/regex/test/regress/test_non_greedy_repeats.cpp +libs/regex/test/regress/test_operators.cpp +libs/regex/test/regress/test_overloads.cpp +libs/regex/test/regress/test_perl_ex.cpp +libs/regex/test/regress/test_replace.cpp +libs/regex/test/regress/test_sets.cpp +libs/regex/test/regress/test_simple_repeats.cpp +libs/regex/test/regress/test_tricky_cases.cpp +libs/regex/test/regress/test_unicode.cpp +libs/scope_exit/doc/html/index.html +libs/scope_exit/doc/html/scope_exit/acknowledge.html +libs/scope_exit/doc/html/scope_exit/alternatives.html +libs/scope_exit/doc/html/scope_exit/compilers.html +libs/scope_exit/doc/html/scope_exit/conf.html +libs/scope_exit/doc/html/scope_exit/ref.html +libs/scope_exit/doc/html/scope_exit/tutorial.html +libs/serialization/doc/acknowledgments.html +libs/serialization/doc/archive_reference.html +libs/serialization/doc/archives.html +libs/serialization/doc/bibliography.html +libs/serialization/doc/class_diagram.html +libs/serialization/doc/codecvt.html +libs/serialization/doc/contents.html +libs/serialization/doc/dataflow.html +libs/serialization/doc/derivation.html +libs/serialization/doc/dot.gif +libs/serialization/doc/exception_safety.html +libs/serialization/doc/exceptions.html +libs/serialization/doc/extended_type_info.html +libs/serialization/doc/faq.html +libs/serialization/doc/headers.html +libs/serialization/doc/history.html +libs/serialization/doc/implementation.html +libs/serialization/doc/index.html +libs/serialization/doc/new_case_studies.html +libs/serialization/doc/overview.html +libs/serialization/doc/performance_status.html +libs/serialization/doc/pimpl.html +libs/serialization/doc/plus.gif +libs/serialization/doc/rationale.html +libs/serialization/doc/reference.html +libs/serialization/doc/release.html +libs/serialization/doc/serialization.html +libs/serialization/doc/shared_ptr2.html +libs/serialization/doc/shared_ptr.html +libs/serialization/doc/singleton.html +libs/serialization/doc/smart_cast.html +libs/serialization/doc/special.html +libs/serialization/doc/state_saver.html +libs/serialization/doc/static_warning.html +libs/serialization/doc/strong_typedef.html +libs/serialization/doc/style.css +libs/serialization/doc/todo.html +libs/serialization/doc/traits.html +libs/serialization/doc/tutorial.html +libs/serialization/doc/void_cast.html +libs/serialization/doc/wrappers.html +libs/serialization/example/demo_auto_ptr.cpp +libs/serialization/example/demo.cpp +libs/serialization/example/demo_exception.cpp +libs/serialization/example/demo_fast_archive.cpp +libs/serialization/example/demofile.txt +libs/serialization/example/demo_gps.hpp +libs/serialization/example/demo_output.txt +libs/serialization/example/demo_pimpl_A.cpp +libs/serialization/example/demo_pimpl_A.hpp +libs/serialization/example/demo_pimpl.cpp +libs/serialization/example/demo_polymorphic_A.cpp +libs/serialization/example/demo_polymorphic_A.hpp +libs/serialization/example/demo_polymorphic.cpp +libs/serialization/example/demo_portable_archive.cpp +libs/serialization/example/demo_save.xml +libs/serialization/example/demo_shared_ptr.cpp +libs/serialization/example/demo_xml.cpp +libs/serialization/example/demo_xml_load.cpp +libs/serialization/example/demo_xml_save.cpp +libs/serialization/index.html +libs/serialization/src/extended_type_info.cpp +libs/serialization/test/dll_a.cpp +libs/serialization/test/polymorphic_derived2.cpp +libs/serialization/test/test_delete_pointer.cpp +libs/serialization/test/test_diamond.cpp +libs/serialization/test/test_dll_exported.cpp +libs/serialization/test/test_dll_simple.cpp +libs/serialization/test/test_no_rtti.cpp +libs/signals2/example/custom_combiners.cpp +libs/signals2/example/disconnect_and_block.cpp +libs/signals2/example/doc_view_acm.cpp +libs/signals2/example/doc_view_acm_deconstruct.cpp +libs/signals2/example/doc_view.cpp +libs/signals2/example/extended_slot.cpp +libs/signals2/example/hello_world_multi_slot.cpp +libs/signals2/example/hello_world_slot.cpp +libs/signals2/example/ordering_slots.cpp +libs/signals2/example/passing_slots.cpp +libs/signals2/example/postconstructor_ex1.cpp +libs/signals2/example/postconstructor_ex2.cpp +libs/signals2/example/predestructor_example.cpp +libs/signals2/example/signal_return_value.cpp +libs/signals2/example/slot_arguments.cpp +libs/signals2/index.html +libs/signals2/test/connection_test.cpp +libs/signals2/test/dead_slot_test.cpp +libs/signals2/test/deconstruct_test.cpp +libs/signals2/test/deletion_test.cpp +libs/signals2/test/ordering_test.cpp +libs/signals2/test/regression_test.cpp +libs/signals2/test/signal_test.cpp +libs/signals2/test/track_test.cpp +libs/signals/index.html +libs/signals/test/dead_slot_test.cpp +libs/signals/test/deletion_test.cpp +libs/signals/test/ordering_test.cpp +libs/signals/test/signal_n_test.cpp +libs/signals/test/signal_test.cpp +libs/signals/test/trackable_test.cpp +libs/smart_ptr/compatibility.htm +libs/smart_ptr/enable_shared_from_this.html +libs/smart_ptr/example/scoped_ptr_example.cpp +libs/smart_ptr/example/scoped_ptr_example.hpp +libs/smart_ptr/example/scoped_ptr_example_test.cpp +libs/smart_ptr/example/shared_ptr_example2.cpp +libs/smart_ptr/example/shared_ptr_example2.hpp +libs/smart_ptr/example/shared_ptr_example2_test.cpp +libs/smart_ptr/example/shared_ptr_example.cpp +libs/smart_ptr/gccspeed.gif +libs/smart_ptr/index.html +libs/smart_ptr/intrusive_ptr.html +libs/smart_ptr/make_shared.html +libs/smart_ptr/msvcspeed.gif +libs/smart_ptr/scoped_array.htm +libs/smart_ptr/scoped_ptr.htm +libs/smart_ptr/shared_array.htm +libs/smart_ptr/shared_ptr.htm +libs/smart_ptr/smart_ptr.htm +libs/smart_ptr/smarttests.htm +libs/smart_ptr/smarttest.zip +libs/smart_ptr/sp_techniques.html +libs/smart_ptr/test/smart_ptr_test.cpp +libs/smart_ptr/weak_ptr.htm +libs/spirit/classic/change_log.html +libs/spirit/classic/doc/acknowledgments.html +libs/spirit/classic/doc/basic_concepts.html +libs/spirit/classic/doc/character_sets.html +libs/spirit/classic/doc/closures.html +libs/spirit/classic/doc/confix.html +libs/spirit/classic/doc/debugging.html +libs/spirit/classic/doc/directives.html +libs/spirit/classic/doc/distinct.html +libs/spirit/classic/doc/dynamic_parsers.html +libs/spirit/classic/doc/epsilon.html +libs/spirit/classic/doc/error_handling.html +libs/spirit/classic/doc/escape_char_parser.html +libs/spirit/classic/doc/faq.html +libs/spirit/classic/doc/file_iterator.html +libs/spirit/classic/doc/functional.html +libs/spirit/classic/doc/functor_parser.html +libs/spirit/classic/doc/grammar.html +libs/spirit/classic/doc/includes.html +libs/spirit/classic/doc/indepth_the_parser_context.html +libs/spirit/classic/doc/indepth_the_parser.html +libs/spirit/classic/doc/indepth_the_scanner.html +libs/spirit/classic/doc/introduction.html +libs/spirit/classic/doc/list_parsers.html +libs/spirit/classic/doc/loops.html +libs/spirit/classic/doc/multi_pass.html +libs/spirit/classic/doc/numerics.html +libs/spirit/classic/doc/operators.html +libs/spirit/classic/doc/organization.html +libs/spirit/classic/doc/parametric_parsers.html +libs/spirit/classic/doc/phoenix.html +libs/spirit/classic/doc/portability.html +libs/spirit/classic/doc/position_iterator.html +libs/spirit/classic/doc/predefined_actors.html +libs/spirit/classic/doc/preface.html +libs/spirit/classic/doc/primitives.html +libs/spirit/classic/doc/quickref.html +libs/spirit/classic/doc/quick_start.html +libs/spirit/classic/doc/rationale.html +libs/spirit/classic/doc/refactoring.html +libs/spirit/classic/doc/references.html +libs/spirit/classic/doc/regular_expression_parser.html +libs/spirit/classic/doc/rule.html +libs/spirit/classic/doc/scanner.html +libs/spirit/classic/doc/scoped_lock.html +libs/spirit/classic/doc/select_parser.html +libs/spirit/classic/doc/semantic_actions.html +libs/spirit/classic/doc/stored_rule.html +libs/spirit/classic/doc/style_guide.html +libs/spirit/classic/doc/subrules.html +libs/spirit/classic/doc/switch_parser.html +libs/spirit/classic/doc/symbols.html +libs/spirit/classic/doc/techniques.html +libs/spirit/classic/doc/the_lazy_parser.html +libs/spirit/classic/doc/theme/bkd2.gif +libs/spirit/classic/doc/theme/spirit.gif +libs/spirit/classic/doc/theme/style.css +libs/spirit/classic/doc/trees.html +libs/spirit/classic/index.html +libs/spirit/doc/html/images/alternative.png +libs/spirit/doc/html/images/and_predicate.png +libs/spirit/doc/html/images/flowofcontrol.png +libs/spirit/doc/html/images/important.png +libs/spirit/doc/html/images/kleene.png +libs/spirit/doc/html/images/lexerflow.png +libs/spirit/doc/html/images/non-terminal.png +libs/spirit/doc/html/images/note.png +libs/spirit/doc/html/images/not_predicate.png +libs/spirit/doc/html/images/optional.png +libs/spirit/doc/html/images/plus.png +libs/spirit/doc/html/images/predicate.png +libs/spirit/doc/html/images/sequence.png +libs/spirit/doc/html/images/spiritkarmaflow.png +libs/spirit/doc/html/images/spiritstructure.png +libs/spirit/doc/html/images/start_stop.png +libs/spirit/doc/html/images/terminal.png +libs/spirit/doc/html/images/tip.png +libs/spirit/doc/html/index.html +libs/spirit/doc/html/spirit/abstracts/attributes/compound_attributes.html +libs/spirit/doc/html/spirit/abstracts/attributes.html +libs/spirit/doc/html/spirit/abstracts/attributes/more_compound_attributes.html +libs/spirit/doc/html/spirit/abstracts/attributes/nonterminal_attributes.html +libs/spirit/doc/html/spirit/abstracts/attributes/primitive_attributes.html +libs/spirit/doc/html/spirit/abstracts.html +libs/spirit/doc/html/spirit/abstracts/parsing_expression_grammar.html +libs/spirit/doc/html/spirit/abstracts/syntax_diagram.html +libs/spirit/doc/html/spirit/acknowledgments.html +libs/spirit/doc/html/spirit/advanced/customize/assign_to/assign_to_attribute_from_iterators.html +libs/spirit/doc/html/spirit/advanced/customize/assign_to/assign_to_attribute_from_value.html +libs/spirit/doc/html/spirit/advanced/customize/assign_to.html +libs/spirit/doc/html/spirit/advanced/customize/clear_value.html +libs/spirit/doc/html/spirit/advanced/customize/extract_from.html +libs/spirit/doc/html/spirit/advanced/customize.html +libs/spirit/doc/html/spirit/advanced/customize/is_container.html +libs/spirit/doc/html/spirit/advanced/customize/iterate/begin_container.html +libs/spirit/doc/html/spirit/advanced/customize/iterate/compare_iterators.html +libs/spirit/doc/html/spirit/advanced/customize/iterate/container_iterator.html +libs/spirit/doc/html/spirit/advanced/customize/iterate/deref_iterator.html +libs/spirit/doc/html/spirit/advanced/customize/iterate/end_container.html +libs/spirit/doc/html/spirit/advanced/customize/iterate.html +libs/spirit/doc/html/spirit/advanced/customize/iterate/next_iterator.html +libs/spirit/doc/html/spirit/advanced/customize/store_value/container_value.html +libs/spirit/doc/html/spirit/advanced/customize/store_value.html +libs/spirit/doc/html/spirit/advanced/customize/store_value/push_back.html +libs/spirit/doc/html/spirit/advanced/customize/transform.html +libs/spirit/doc/html/spirit/advanced.html +libs/spirit/doc/html/spirit/advanced/indepth.html +libs/spirit/doc/html/spirit/advanced/indepth/parsers_indepth.html +libs/spirit/doc/html/spirit/faq.html +libs/spirit/doc/html/spirit/introduction.html +libs/spirit/doc/html/spirit/karma.html +libs/spirit/doc/html/spirit/karma/performance_measurements.html +libs/spirit/doc/html/spirit/karma/performance_measurements/numeric_performance/double_performance.html +libs/spirit/doc/html/spirit/karma/performance_measurements/numeric_performance/format_performance.html +libs/spirit/doc/html/spirit/karma/performance_measurements/numeric_performance.html +libs/spirit/doc/html/spirit/karma/performance_measurements/numeric_performance/int_performance.html +libs/spirit/doc/html/spirit/karma/quick_reference/common_notation.html +libs/spirit/doc/html/spirit/karma/quick_reference/compound_attribute_rules.html +libs/spirit/doc/html/spirit/karma/quick_reference.html +libs/spirit/doc/html/spirit/karma/quick_reference/non_terminals.html +libs/spirit/doc/html/spirit/karma/quick_reference/phoenix.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/action.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/auxiliary.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/binary.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/boolean.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/char.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/directives.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/operators.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/real_number.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/signed_int.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/stream.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/string.html +libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/unsigned_int.html +libs/spirit/doc/html/spirit/karma/quick_reference/semantic_actions.html +libs/spirit/doc/html/spirit/karma/reference/action.html +libs/spirit/doc/html/spirit/karma/reference/auxiliary/attr_cast.html +libs/spirit/doc/html/spirit/karma/reference/auxiliary/eol.html +libs/spirit/doc/html/spirit/karma/reference/auxiliary/eps.html +libs/spirit/doc/html/spirit/karma/reference/auxiliary.html +libs/spirit/doc/html/spirit/karma/reference/auxiliary/lazy.html +libs/spirit/doc/html/spirit/karma/reference/binary/binary_big.html +libs/spirit/doc/html/spirit/karma/reference/binary/binary_little.html +libs/spirit/doc/html/spirit/karma/reference/binary/binary_native.html +libs/spirit/doc/html/spirit/karma/reference/binary.html +libs/spirit/doc/html/spirit/karma/reference/char/char_class.html +libs/spirit/doc/html/spirit/karma/reference/char/char_generator.html +libs/spirit/doc/html/spirit/karma/reference/char.html +libs/spirit/doc/html/spirit/karma/reference/directive/alignment.html +libs/spirit/doc/html/spirit/karma/reference/directive/buffer.html +libs/spirit/doc/html/spirit/karma/reference/directive/delimit.html +libs/spirit/doc/html/spirit/karma/reference/directive.html +libs/spirit/doc/html/spirit/karma/reference/directive/maxwidth.html +libs/spirit/doc/html/spirit/karma/reference/directive/omit.html +libs/spirit/doc/html/spirit/karma/reference/directive/repeat.html +libs/spirit/doc/html/spirit/karma/reference/directive/upperlower.html +libs/spirit/doc/html/spirit/karma/reference/generate_api.html +libs/spirit/doc/html/spirit/karma/reference/generate_api/iterator_api.html +libs/spirit/doc/html/spirit/karma/reference/generate_api/stream_api.html +libs/spirit/doc/html/spirit/karma/reference/generator_concepts/binarygenerator.html +libs/spirit/doc/html/spirit/karma/reference/generator_concepts/generator.html +libs/spirit/doc/html/spirit/karma/reference/generator_concepts.html +libs/spirit/doc/html/spirit/karma/reference/generator_concepts/narygenerator.html +libs/spirit/doc/html/spirit/karma/reference/generator_concepts/nonterminal.html +libs/spirit/doc/html/spirit/karma/reference/generator_concepts/primitivegenerator.html +libs/spirit/doc/html/spirit/karma/reference/generator_concepts/unarygenerator.html +libs/spirit/doc/html/spirit/karma/reference.html +libs/spirit/doc/html/spirit/karma/reference/karma_basics.html +libs/spirit/doc/html/spirit/karma/reference/nonterminal/grammar.html +libs/spirit/doc/html/spirit/karma/reference/nonterminal.html +libs/spirit/doc/html/spirit/karma/reference/nonterminal/rule.html +libs/spirit/doc/html/spirit/karma/reference/numeric/boolean.html +libs/spirit/doc/html/spirit/karma/reference/numeric.html +libs/spirit/doc/html/spirit/karma/reference/numeric/real_number.html +libs/spirit/doc/html/spirit/karma/reference/numeric/signed_int.html +libs/spirit/doc/html/spirit/karma/reference/numeric/unsigned_int.html +libs/spirit/doc/html/spirit/karma/reference/operator/alternative.html +libs/spirit/doc/html/spirit/karma/reference/operator/and_predicate.html +libs/spirit/doc/html/spirit/karma/reference/operator.html +libs/spirit/doc/html/spirit/karma/reference/operator/kleene.html +libs/spirit/doc/html/spirit/karma/reference/operator/list.html +libs/spirit/doc/html/spirit/karma/reference/operator/not_predicate.html +libs/spirit/doc/html/spirit/karma/reference/operator/optional.html +libs/spirit/doc/html/spirit/karma/reference/operator/plus.html +libs/spirit/doc/html/spirit/karma/reference/operator/sequence.html +libs/spirit/doc/html/spirit/karma/reference/stream.html +libs/spirit/doc/html/spirit/karma/reference/stream/stream.html +libs/spirit/doc/html/spirit/karma/reference/string.html +libs/spirit/doc/html/spirit/karma/reference/string/string.html +libs/spirit/doc/html/spirit/karma/tutorials.html +libs/spirit/doc/html/spirit/karma/tutorials/karma_complex.html +libs/spirit/doc/html/spirit/karma/tutorials/karma_easier_complex.html +libs/spirit/doc/html/spirit/karma/tutorials/num_list.html +libs/spirit/doc/html/spirit/karma/tutorials/num_matrix.html +libs/spirit/doc/html/spirit/karma/tutorials/quick_start.html +libs/spirit/doc/html/spirit/karma/tutorials/semantic_actions.html +libs/spirit/doc/html/spirit/karma/tutorials/warming_up.html +libs/spirit/doc/html/spirit/lex/abstracts.html +libs/spirit/doc/html/spirit/lex/abstracts/lexer_primitives.html +libs/spirit/doc/html/spirit/lex/abstracts/lexer_primitives/lexer_token_values.html +libs/spirit/doc/html/spirit/lex/abstracts/lexer_semantic_actions.html +libs/spirit/doc/html/spirit/lex/abstracts/lexer_static_model.html +libs/spirit/doc/html/spirit/lex/abstracts/lexer_tokenizing.html +libs/spirit/doc/html/spirit/lex.html +libs/spirit/doc/html/spirit/lex/lexer_introduction.html +libs/spirit/doc/html/spirit/lex/quick_reference/common_notation.html +libs/spirit/doc/html/spirit/lex/quick_reference.html +libs/spirit/doc/html/spirit/lex/quick_reference/lexer.html +libs/spirit/doc/html/spirit/lex/quick_reference/lexers.html +libs/spirit/doc/html/spirit/lex/quick_reference/phoenix.html +libs/spirit/doc/html/spirit/lex/quick_reference/semantic_actions.html +libs/spirit/doc/html/spirit/lex/reference.html +libs/spirit/doc/html/spirit/lex/reference/lex_basics.html +libs/spirit/doc/html/spirit/lex/reference/lexer_api.html +libs/spirit/doc/html/spirit/lex/reference/lexer_concepts.html +libs/spirit/doc/html/spirit/lex/reference/lexer_concepts/lexer.html +libs/spirit/doc/html/spirit/lex/reference/lexer_concepts/narylexer.html +libs/spirit/doc/html/spirit/lex/reference/lexer_concepts/primitivelexer.html +libs/spirit/doc/html/spirit/lex/reference/lexer_concepts/unarylexer.html +libs/spirit/doc/html/spirit/lex/reference/primitives/char_tokendef.html +libs/spirit/doc/html/spirit/lex/reference/primitives.html +libs/spirit/doc/html/spirit/lex/tutorials.html +libs/spirit/doc/html/spirit/lex/tutorials/lexer_quickstart1.html +libs/spirit/doc/html/spirit/lex/tutorials/lexer_quickstart2.html +libs/spirit/doc/html/spirit/lex/tutorials/lexer_quickstart3.html +libs/spirit/doc/html/spirit/lex/tutorials/lexer_tutorials.html +libs/spirit/doc/html/spirit/notes.html +libs/spirit/doc/html/spirit/notes/porting_from_spirit_1_8_x.html +libs/spirit/doc/html/spirit/notes/style_guide.html +libs/spirit/doc/html/spirit/preface.html +libs/spirit/doc/html/spirit/qi.html +libs/spirit/doc/html/spirit/qi/quick_reference/common_notation.html +libs/spirit/doc/html/spirit/qi/quick_reference/compound_attribute_rules.html +libs/spirit/doc/html/spirit/qi/quick_reference.html +libs/spirit/doc/html/spirit/qi/quick_reference/non_terminals.html +libs/spirit/doc/html/spirit/qi/quick_reference/phoenix.html +libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/action.html +libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/auxiliary.html +libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/binary.html +libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/char.html +libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/directive.html +libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers.html +libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/numeric.html +libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/operator.html +libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/string.html +libs/spirit/doc/html/spirit/qi/quick_reference/semantic_actions.html +libs/spirit/doc/html/spirit/qi/reference/action.html +libs/spirit/doc/html/spirit/qi/reference/auxiliary/attr_cast.html +libs/spirit/doc/html/spirit/qi/reference/auxiliary/attr.html +libs/spirit/doc/html/spirit/qi/reference/auxiliary/eoi.html +libs/spirit/doc/html/spirit/qi/reference/auxiliary/eol.html +libs/spirit/doc/html/spirit/qi/reference/auxiliary/eps.html +libs/spirit/doc/html/spirit/qi/reference/auxiliary.html +libs/spirit/doc/html/spirit/qi/reference/auxiliary/lazy.html +libs/spirit/doc/html/spirit/qi/reference/basics.html +libs/spirit/doc/html/spirit/qi/reference/binary/binary_big.html +libs/spirit/doc/html/spirit/qi/reference/binary/binary_little.html +libs/spirit/doc/html/spirit/qi/reference/binary/binary_native.html +libs/spirit/doc/html/spirit/qi/reference/binary.html +libs/spirit/doc/html/spirit/qi/reference/char/char_class.html +libs/spirit/doc/html/spirit/qi/reference/char/char.html +libs/spirit/doc/html/spirit/qi/reference/char.html +libs/spirit/doc/html/spirit/qi/reference/directive.html +libs/spirit/doc/html/spirit/qi/reference/directive/lexeme.html +libs/spirit/doc/html/spirit/qi/reference/directive/no_case.html +libs/spirit/doc/html/spirit/qi/reference/directive/omit.html +libs/spirit/doc/html/spirit/qi/reference/directive/raw.html +libs/spirit/doc/html/spirit/qi/reference/directive/repeat.html +libs/spirit/doc/html/spirit/qi/reference/directive/skip.html +libs/spirit/doc/html/spirit/qi/reference.html +libs/spirit/doc/html/spirit/qi/reference/nonterminal/grammar.html +libs/spirit/doc/html/spirit/qi/reference/nonterminal.html +libs/spirit/doc/html/spirit/qi/reference/nonterminal/rule.html +libs/spirit/doc/html/spirit/qi/reference/numeric/boolean.html +libs/spirit/doc/html/spirit/qi/reference/numeric.html +libs/spirit/doc/html/spirit/qi/reference/numeric/int.html +libs/spirit/doc/html/spirit/qi/reference/numeric/real.html +libs/spirit/doc/html/spirit/qi/reference/numeric/uint.html +libs/spirit/doc/html/spirit/qi/reference/operator/alternative.html +libs/spirit/doc/html/spirit/qi/reference/operator/and_predicate.html +libs/spirit/doc/html/spirit/qi/reference/operator/difference.html +libs/spirit/doc/html/spirit/qi/reference/operator/expect.html +libs/spirit/doc/html/spirit/qi/reference/operator.html +libs/spirit/doc/html/spirit/qi/reference/operator/kleene.html +libs/spirit/doc/html/spirit/qi/reference/operator/list.html +libs/spirit/doc/html/spirit/qi/reference/operator/not_predicate.html +libs/spirit/doc/html/spirit/qi/reference/operator/optional.html +libs/spirit/doc/html/spirit/qi/reference/operator/permutation.html +libs/spirit/doc/html/spirit/qi/reference/operator/plus.html +libs/spirit/doc/html/spirit/qi/reference/operator/sequence.html +libs/spirit/doc/html/spirit/qi/reference/operator/sequential_or.html +libs/spirit/doc/html/spirit/qi/reference/parse_api.html +libs/spirit/doc/html/spirit/qi/reference/parse_api/iterator_api.html +libs/spirit/doc/html/spirit/qi/reference/parse_api/stream_api.html +libs/spirit/doc/html/spirit/qi/reference/parser_concepts/binaryparser.html +libs/spirit/doc/html/spirit/qi/reference/parser_concepts.html +libs/spirit/doc/html/spirit/qi/reference/parser_concepts/naryparser.html +libs/spirit/doc/html/spirit/qi/reference/parser_concepts/nonterminal.html +libs/spirit/doc/html/spirit/qi/reference/parser_concepts/parser.html +libs/spirit/doc/html/spirit/qi/reference/parser_concepts/primitiveparser.html +libs/spirit/doc/html/spirit/qi/reference/parser_concepts/unaryparser.html +libs/spirit/doc/html/spirit/qi/reference/stream.html +libs/spirit/doc/html/spirit/qi/reference/stream/stream.html +libs/spirit/doc/html/spirit/qi/reference/string.html +libs/spirit/doc/html/spirit/qi/reference/string/string.html +libs/spirit/doc/html/spirit/qi/reference/string/symbols.html +libs/spirit/doc/html/spirit/qi/tutorials/complex___our_first_complex_parser.html +libs/spirit/doc/html/spirit/qi/tutorials/employee___parsing_into_structs.html +libs/spirit/doc/html/spirit/qi/tutorials.html +libs/spirit/doc/html/spirit/qi/tutorials/mini_xml___asts_.html +libs/spirit/doc/html/spirit/qi/tutorials/mini_xml___error_handling.html +libs/spirit/doc/html/spirit/qi/tutorials/number_list_attribute___one_more__with_style.html +libs/spirit/doc/html/spirit/qi/tutorials/number_list_redux___list_syntax.html +libs/spirit/doc/html/spirit/qi/tutorials/number_list___stuffing_numbers_into_a_std__vector.html +libs/spirit/doc/html/spirit/qi/tutorials/quick_start.html +libs/spirit/doc/html/spirit/qi/tutorials/roman_numerals.html +libs/spirit/doc/html/spirit/qi/tutorials/semantic_actions.html +libs/spirit/doc/html/spirit/qi/tutorials/sum___adding_numbers.html +libs/spirit/doc/html/spirit/qi/tutorials/warming_up.html +libs/spirit/doc/html/spirit/references.html +libs/spirit/doc/html/spirit/repository.html +libs/spirit/doc/html/spirit/structure.html +libs/spirit/doc/html/spirit/structure/include.html +libs/spirit/doc/html/spirit/support.html +libs/spirit/doc/html/spirit/support/multi_pass.html +libs/spirit/doc/html/spirit/what_s_new.html +libs/spirit/example/karma/actions.cpp +libs/spirit/example/karma/complex_number.cpp +libs/spirit/example/karma/complex_number_easier.cpp +libs/spirit/example/karma/num_list1.cpp +libs/spirit/example/karma/num_list2.cpp +libs/spirit/example/karma/num_list3.cpp +libs/spirit/example/karma/num_matrix.cpp +libs/spirit/example/lex/static_lexer/word_count_generate.cpp +libs/spirit/example/lex/static_lexer/word_count_static.cpp +libs/spirit/example/lex/static_lexer/word_count_static.hpp +libs/spirit/example/lex/static_lexer/word_count_tokens.hpp +libs/spirit/example/lex/word_count.cpp +libs/spirit/example/lex/word_count_functor.cpp +libs/spirit/example/lex/word_count_lexer.cpp +libs/spirit/example/qi/actions.cpp +libs/spirit/example/qi/complex_number.cpp +libs/spirit/example/qi/employee.cpp +libs/spirit/example/qi/mini_xml1.cpp +libs/spirit/example/qi/mini_xml2.cpp +libs/spirit/example/qi/mini_xml3.cpp +libs/spirit/example/qi/num_list1.cpp +libs/spirit/example/qi/num_list2.cpp +libs/spirit/example/qi/num_list3.cpp +libs/spirit/example/qi/num_list4.cpp +libs/spirit/example/qi/roman.cpp +libs/spirit/example/qi/sum.cpp +libs/spirit/example/support/multi_pass.cpp +libs/spirit/index.html +libs/spirit/phoenix/doc/html/index.html +libs/spirit/repository/doc/html/index.html +libs/statechart/doc/acknowledgments.html +libs/statechart/doc/A.gif +libs/statechart/doc/Camera2.gif +libs/statechart/doc/Camera.gif +libs/statechart/doc/CameraWithHistory1.gif +libs/statechart/doc/CameraWithHistory2.gif +libs/statechart/doc/configuration.html +libs/statechart/doc/contact.html +libs/statechart/doc/DeepHistoryLimitation1.gif +libs/statechart/doc/DeepHistoryLimitation2.gif +libs/statechart/doc/definitions.html +libs/statechart/doc/EventDispatch.gif +libs/statechart/doc/ExceptionsAndOrthStates.gif +libs/statechart/doc/faq.html +libs/statechart/doc/future_and_history.html +libs/statechart/doc/HelloWorld.gif +libs/statechart/doc/index.html +libs/statechart/doc/JoinAndFork.gif +libs/statechart/doc/LCA.gif +libs/statechart/doc/OrthogonalStates.gif +libs/statechart/doc/OutermostUnstableState.gif +libs/statechart/doc/PerformanceCustom1.gif +libs/statechart/doc/PerformanceCustom2.gif +libs/statechart/doc/PerformanceCustom3.gif +libs/statechart/doc/PerformanceCustom4.gif +libs/statechart/doc/performance.html +libs/statechart/doc/PerformanceNative1.gif +libs/statechart/doc/PerformanceNative2.gif +libs/statechart/doc/PerformanceNative3.gif +libs/statechart/doc/PerformanceNative4.gif +libs/statechart/doc/PerformanceNormal1.gif +libs/statechart/doc/PerformanceNormal2.gif +libs/statechart/doc/PerformanceNormal3.gif +libs/statechart/doc/PerformanceNormal4.gif +libs/statechart/doc/rationale.html +libs/statechart/doc/rationale.pdf +libs/statechart/doc/reference.html +libs/statechart/doc/reference.pdf +libs/statechart/doc/SimpleEventDispatch.gif +libs/statechart/doc/StopWatch.gif +libs/statechart/doc/ThrowingEntryAction.gif +libs/statechart/doc/ThrowingInStateReaction.gif +libs/statechart/doc/ThrowingTransitionAction.gif +libs/statechart/doc/TransAcrossOrthRegions.gif +libs/statechart/doc/tutorial.html +libs/statechart/doc/tutorial.pdf +libs/statechart/doc/uml_mapping.html +libs/statechart/test/TuTest.cpp +libs/statechart/test/TuTest.hpp +libs/statechart/test/TuTestMain.cpp +libs/static_assert/index.html +libs/static_assert/static_assert_example_1.cpp +libs/static_assert/static_assert_example_2.cpp +libs/static_assert/static_assert_example_3.cpp +libs/static_assert/static_assert.htm +libs/static_assert/static_assert_test.cpp +libs/static_assert/static_assert_test_fail_1.cpp +libs/static_assert/static_assert_test_fail_2.cpp +libs/static_assert/static_assert_test_fail_3.cpp +libs/static_assert/static_assert_test_fail_4.cpp +libs/static_assert/static_assert_test_fail_5.cpp +libs/static_assert/static_assert_test_fail_6.cpp +libs/static_assert/static_assert_test_fail_7.cpp +libs/static_assert/static_assert_test_fail_8.cpp +libs/static_assert/static_assert_test_fail_9.cpp +libs/system/doc/index.html +libs/system/doc/reference.html +libs/system/index.html +libs/test/docbook/img/boost.test.logo.png +libs/test/doc/html/aknowledgements.html +libs/test/doc/html/execution-monitor/compilation.html +libs/test/doc/html/execution-monitor.html +libs/test/doc/html/execution-monitor/reference.html +libs/test/doc/html/execution-monitor/user-guide.html +libs/test/doc/html/faq.html +libs/test/doc/html/index.html +libs/test/doc/html/intro.html +libs/test/doc/html/minimal.html +libs/test/doc/html/open-issues.html +libs/test/doc/html/prg-exec-monitor/compilation.html +libs/test/doc/html/prg-exec-monitor.html +libs/test/doc/html/prg-exec-monitor/impl.html +libs/test/doc/html/tutorials/hello-the-testing-world.html +libs/test/doc/html/tutorials/intro-in-testing.html +libs/test/doc/html/tutorials/new-year-resolution.html +libs/test/doc/html/utf/compilation/auto-linking.html +libs/test/doc/html/utf/compilation/direct-include.html +libs/test/doc/html/utf/compilation.html +libs/test/doc/html/utf/compilation/standalone.html +libs/test/doc/html/utf.html +libs/test/doc/html/utf/intro.html +libs/test/doc/html/utf/testing-tools/custom-predicate.html +libs/test/doc/html/utf/testing-tools/floating_point_comparison.html +libs/test/doc/html/utf/testing-tools.html +libs/test/doc/html/utf/testing-tools/output-test.html +libs/test/doc/html/utf/testing-tools/reference.html +libs/test/doc/html/utf/tutorials.html +libs/test/doc/html/utf/usage-recommendations/command-line-specific.html +libs/test/doc/html/utf/usage-recommendations/dot-net-specific.html +libs/test/doc/html/utf/usage-recommendations/generic.html +libs/test/doc/html/utf/usage-recommendations.html +libs/test/doc/html/utf/user-guide/fixture/global.html +libs/test/doc/html/utf/user-guide/fixture.html +libs/test/doc/html/utf/user-guide/fixture/model.html +libs/test/doc/html/utf/user-guide/fixture/per-test-case.html +libs/test/doc/html/utf/user-guide/fixture/test-suite-shared.html +libs/test/doc/html/utf/user-guide.html +libs/test/doc/html/utf/user-guide/initialization.html +libs/test/doc/html/utf/user-guide/runtime-config.html +libs/test/doc/html/utf/user-guide/runtime-config/reference.html +libs/test/doc/html/utf/user-guide/runtime-config/run-by-name.html +libs/test/doc/html/utf/user-guide/test-organization/auto-nullary-test-case.html +libs/test/doc/html/utf/user-guide/test-organization/auto-test-case-template.html +libs/test/doc/html/utf/user-guide/test-organization/auto-test-suite.html +libs/test/doc/html/utf/user-guide/test-organization/expected-failures.html +libs/test/doc/html/utf/user-guide/test-organization.html +libs/test/doc/html/utf/user-guide/test-organization/manual-nullary-test-case.html +libs/test/doc/html/utf/user-guide/test-organization/manual-test-case-template.html +libs/test/doc/html/utf/user-guide/test-organization/manual-test-suite.html +libs/test/doc/html/utf/user-guide/test-organization/master-test-suite.html +libs/test/doc/html/utf/user-guide/test-organization/nullary-test-case.html +libs/test/doc/html/utf/user-guide/test-organization/test-case-template.html +libs/test/doc/html/utf/user-guide/test-organization/test-suite.html +libs/test/doc/html/utf/user-guide/test-organization/unary-test-case.html +libs/test/doc/html/utf/user-guide/test-output/BOOST_TEST_CHECKPOINT.html +libs/test/doc/html/utf/user-guide/test-output/BOOST_TEST_MESSAGE.html +libs/test/doc/html/utf/user-guide/test-output/BOOST_TEST_PASSPOINT.html +libs/test/doc/html/utf/user-guide/test-output.html +libs/test/doc/html/utf/user-guide/test-output/log-ct-config.html +libs/test/doc/html/utf/user-guide/test-output/log-hr-format.html +libs/test/doc/html/utf/user-guide/test-output/log-xml-format.html +libs/test/doc/html/utf/user-guide/test-output/results-report.html +libs/test/doc/html/utf/user-guide/test-output/test-log.html +libs/test/doc/html/utf/user-guide/test-output/test-progress.html +libs/test/doc/html/utf/user-guide/test-runners.html +libs/test/doc/html/utf/user-guide/usage-variants/dynamic-lib-variant.html +libs/test/doc/html/utf/user-guide/usage-variants/extern-test-runner.html +libs/test/doc/html/utf/user-guide/usage-variants/extern-test-runner-variant.html +libs/test/doc/html/utf/user-guide/usage-variants.html +libs/test/doc/html/utf/user-guide/usage-variants/single-header-variant.html +libs/test/doc/html/utf/user-guide/usage-variants/static-lib-variant.html +libs/test/doc/img/class-hier.jpg +libs/test/doc/img/post_build_event.jpg +libs/test/doc/img/post_build_out.jpg +libs/test/doc/img/run_args.jpg +libs/test/doc/js/boost-test.js +libs/test/doc/src/examples/example01.cpp +libs/test/doc/src/examples/example02.cpp +libs/test/doc/src/examples/example03.cpp +libs/test/doc/src/examples/example04.cpp +libs/test/doc/src/examples/example05.cpp +libs/test/doc/src/examples/example06.cpp +libs/test/doc/src/examples/example07.cpp +libs/test/doc/src/examples/example08.cpp +libs/test/doc/src/examples/example09.cpp +libs/test/doc/src/examples/example10.cpp +libs/test/doc/src/examples/example11.cpp +libs/test/doc/src/examples/example12.cpp +libs/test/doc/src/examples/example13.cpp +libs/test/doc/src/examples/example14.cpp +libs/test/doc/src/examples/example15.cpp +libs/test/doc/src/examples/example16.cpp +libs/test/doc/src/examples/example17.cpp +libs/test/doc/src/examples/example18.cpp +libs/test/doc/src/examples/example19.cpp +libs/test/doc/src/examples/example20.cpp +libs/test/doc/src/examples/example21.cpp +libs/test/doc/src/examples/example22.cpp +libs/test/doc/src/examples/example24.cpp +libs/test/doc/src/examples/example25.cpp +libs/test/doc/src/examples/example26.cpp +libs/test/doc/src/examples/example27.cpp +libs/test/doc/src/examples/example28.cpp +libs/test/doc/src/examples/example29.cpp +libs/test/doc/src/examples/example30.cpp +libs/test/doc/src/examples/example31.cpp +libs/test/doc/src/examples/example32.cpp +libs/test/doc/src/examples/example33.cpp +libs/test/doc/src/examples/example34.cpp +libs/test/doc/src/examples/example35.cpp +libs/test/doc/src/examples/example36.cpp +libs/test/doc/src/examples/example37.cpp +libs/test/doc/src/examples/example38.cpp +libs/test/doc/src/examples/example39.cpp +libs/test/doc/src/examples/example40.cpp +libs/test/doc/src/examples/example41.cpp +libs/test/doc/src/examples/example42.cpp +libs/test/doc/src/examples/example43.cpp +libs/test/doc/src/examples/example44.cpp +libs/test/doc/src/examples/example45.cpp +libs/test/doc/src/examples/example46.cpp +libs/test/doc/src/examples/example47.cpp +libs/test/doc/src/examples/example48.cpp +libs/test/doc/src/examples/example49.cpp +libs/test/doc/src/examples/example50.cpp +libs/test/doc/src/examples/example51.cpp +libs/test/doc/src/examples/example52.cpp +libs/test/doc/src/examples/example53.cpp +libs/test/doc/src/examples/example54.cpp +libs/test/doc/src/examples/example55.cpp +libs/test/doc/src/examples/example56.cpp +libs/test/doc/src/examples/example57.cpp +libs/test/doc/src/examples/example58.cpp +libs/test/doc/style/boostbook.css +libs/test/doc/style/btl-headers.css +libs/test/doc/style/btl-inline.css +libs/test/doc/style/btl-links.css +libs/test/doc/style/btl-lists.css +libs/test/doc/style/btl-paragraphs.css +libs/test/doc/style/btl-structure.css +libs/test/doc/style/btl-tables.css +libs/test/doc/style/style.css +libs/test/index.html +libs/thread/doc/index.html +libs/timer/index.html +libs/timer/test/timer_test.cpp +libs/timer/timer.htm +libs/tokenizer/char_delimiters_separator.htm +libs/tokenizer/char_separator.htm +libs/tokenizer/escaped_list_separator.htm +libs/tokenizer/index.html +libs/tokenizer/introduc.htm +libs/tokenizer/offset_separator.htm +libs/tokenizer/token_iterator.htm +libs/tokenizer/tokenizerfunction.htm +libs/tokenizer/tokenizer.htm +libs/tr1/index.html +libs/tuple/doc/design_decisions_rationale.html +libs/tuple/doc/tuple_advanced_interface.html +libs/tuple/doc/tuple_users_guide.html +libs/tuple/index.html +libs/typeof/index.html +libs/type_traits/doc/html/boost_typetraits/background.html +libs/type_traits/doc/html/boost_typetraits/category/alignment.html +libs/type_traits/doc/html/boost_typetraits/category/function.html +libs/type_traits/doc/html/boost_typetraits/category.html +libs/type_traits/doc/html/boost_typetraits/category/transform.html +libs/type_traits/doc/html/boost_typetraits/category/value_traits.html +libs/type_traits/doc/html/boost_typetraits/category/value_traits/primary.html +libs/type_traits/doc/html/boost_typetraits/category/value_traits/properties.html +libs/type_traits/doc/html/boost_typetraits/category/value_traits/relate.html +libs/type_traits/doc/html/boost_typetraits/credits.html +libs/type_traits/doc/html/boost_typetraits/examples/copy.html +libs/type_traits/doc/html/boost_typetraits/examples/destruct.html +libs/type_traits/doc/html/boost_typetraits/examples/fill.html +libs/type_traits/doc/html/boost_typetraits/examples.html +libs/type_traits/doc/html/boost_typetraits/examples/iter.html +libs/type_traits/doc/html/boost_typetraits/examples/to_double.html +libs/type_traits/doc/html/boost_typetraits/intrinsics.html +libs/type_traits/doc/html/boost_typetraits/intro.html +libs/type_traits/doc/html/boost_typetraits/mpl.html +libs/type_traits/doc/html/boost_typetraits/reference/add_const.html +libs/type_traits/doc/html/boost_typetraits/reference/add_cv.html +libs/type_traits/doc/html/boost_typetraits/reference/add_pointer.html +libs/type_traits/doc/html/boost_typetraits/reference/add_reference.html +libs/type_traits/doc/html/boost_typetraits/reference/add_volatile.html +libs/type_traits/doc/html/boost_typetraits/reference/aligned_storage.html +libs/type_traits/doc/html/boost_typetraits/reference/alignment_of.html +libs/type_traits/doc/html/boost_typetraits/reference/decay.html +libs/type_traits/doc/html/boost_typetraits/reference/extent.html +libs/type_traits/doc/html/boost_typetraits/reference/floating_point_promotion.html +libs/type_traits/doc/html/boost_typetraits/reference/function_traits.html +libs/type_traits/doc/html/boost_typetraits/reference/has_new_operator.html +libs/type_traits/doc/html/boost_typetraits/reference/has_nothrow_assign.html +libs/type_traits/doc/html/boost_typetraits/reference/has_nothrow_constructor.html +libs/type_traits/doc/html/boost_typetraits/reference/has_nothrow_copy.html +libs/type_traits/doc/html/boost_typetraits/reference/has_nothrow_cp_cons.html +libs/type_traits/doc/html/boost_typetraits/reference/has_no_throw_def_cons.html +libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_assign.html +libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_constructor.html +libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_copy.html +libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_cp_cons.html +libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_def_cons.html +libs/type_traits/doc/html/boost_typetraits/reference/has_trivial_destructor.html +libs/type_traits/doc/html/boost_typetraits/reference/has_virtual_destructor.html +libs/type_traits/doc/html/boost_typetraits/reference.html +libs/type_traits/doc/html/boost_typetraits/reference/integral_constant.html +libs/type_traits/doc/html/boost_typetraits/reference/integral_promotion.html +libs/type_traits/doc/html/boost_typetraits/reference/is_abstract.html +libs/type_traits/doc/html/boost_typetraits/reference/is_arithmetic.html +libs/type_traits/doc/html/boost_typetraits/reference/is_array.html +libs/type_traits/doc/html/boost_typetraits/reference/is_base_of.html +libs/type_traits/doc/html/boost_typetraits/reference/is_class.html +libs/type_traits/doc/html/boost_typetraits/reference/is_complex.html +libs/type_traits/doc/html/boost_typetraits/reference/is_compound.html +libs/type_traits/doc/html/boost_typetraits/reference/is_const.html +libs/type_traits/doc/html/boost_typetraits/reference/is_convertible.html +libs/type_traits/doc/html/boost_typetraits/reference/is_empty.html +libs/type_traits/doc/html/boost_typetraits/reference/is_enum.html +libs/type_traits/doc/html/boost_typetraits/reference/is_floating_point.html +libs/type_traits/doc/html/boost_typetraits/reference/is_function.html +libs/type_traits/doc/html/boost_typetraits/reference/is_fundamental.html +libs/type_traits/doc/html/boost_typetraits/reference/is_integral.html +libs/type_traits/doc/html/boost_typetraits/reference/is_member_function_pointer.html +libs/type_traits/doc/html/boost_typetraits/reference/is_member_object_pointer.html +libs/type_traits/doc/html/boost_typetraits/reference/is_member_pointer.html +libs/type_traits/doc/html/boost_typetraits/reference/is_object.html +libs/type_traits/doc/html/boost_typetraits/reference/is_pod.html +libs/type_traits/doc/html/boost_typetraits/reference/is_pointer.html +libs/type_traits/doc/html/boost_typetraits/reference/is_polymorphic.html +libs/type_traits/doc/html/boost_typetraits/reference/is_reference.html +libs/type_traits/doc/html/boost_typetraits/reference/is_same.html +libs/type_traits/doc/html/boost_typetraits/reference/is_scalar.html +libs/type_traits/doc/html/boost_typetraits/reference/is_signed.html +libs/type_traits/doc/html/boost_typetraits/reference/is_stateless.html +libs/type_traits/doc/html/boost_typetraits/reference/is_union.html +libs/type_traits/doc/html/boost_typetraits/reference/is_unsigned.html +libs/type_traits/doc/html/boost_typetraits/reference/is_virtual_base_of.html +libs/type_traits/doc/html/boost_typetraits/reference/is_void.html +libs/type_traits/doc/html/boost_typetraits/reference/is_volatile.html +libs/type_traits/doc/html/boost_typetraits/reference/make_signed.html +libs/type_traits/doc/html/boost_typetraits/reference/make_unsigned.html +libs/type_traits/doc/html/boost_typetraits/reference/promote.html +libs/type_traits/doc/html/boost_typetraits/reference/rank.html +libs/type_traits/doc/html/boost_typetraits/reference/remove_all_extents.html +libs/type_traits/doc/html/boost_typetraits/reference/remove_const.html +libs/type_traits/doc/html/boost_typetraits/reference/remove_cv.html +libs/type_traits/doc/html/boost_typetraits/reference/remove_extent.html +libs/type_traits/doc/html/boost_typetraits/reference/remove_pointer.html +libs/type_traits/doc/html/boost_typetraits/reference/remove_reference.html +libs/type_traits/doc/html/boost_typetraits/reference/remove_volatile.html +libs/type_traits/doc/html/boost_typetraits/reference/type_with_alignment.html +libs/type_traits/doc/html/boost_typetraits/user_defined.html +libs/type_traits/doc/html/index.html +libs/type_traits/examples/copy_example.cpp +libs/type_traits/examples/fill_example.cpp +libs/type_traits/examples/iter_swap_example.cpp +libs/type_traits/examples/trivial_destructor_example.cpp +libs/type_traits/index.html +libs/units/example/complex.cpp +libs/units/example/composite_output.cpp +libs/units/example/conversion.cpp +libs/units/example/conversion_factor.cpp +libs/units/example/dimension.cpp +libs/units/example/heterogeneous_unit.cpp +libs/units/example/kitchen_sink.cpp +libs/units/example/lambda.cpp +libs/units/example/measurement.hpp +libs/units/example/non_base_dimension.cpp +libs/units/example/performance.cpp +libs/units/example/quantity.cpp +libs/units/example/quaternion.cpp +libs/units/example/radar_beam_height.cpp +libs/units/example/runtime_conversion_factor.cpp +libs/units/example/runtime_unit.cpp +libs/units/example/temperature.cpp +libs/units/example/unit.cpp +libs/units/images/form_0.png +libs/units/images/form_10.png +libs/units/images/form_11.png +libs/units/images/form_12.png +libs/units/images/form_13.png +libs/units/images/form_14.png +libs/units/images/form_15.png +libs/units/images/form_1.png +libs/units/images/form_2.png +libs/units/images/form_3.png +libs/units/images/form_4.png +libs/units/images/form_5.png +libs/units/images/form_6.png +libs/units/images/form_7.png +libs/units/images/form_8.png +libs/units/images/form_9.png +libs/units/index.html +libs/unordered/examples/case_insensitive.hpp +libs/unordered/examples/fnv1.hpp +libs/unordered/index.html +libs/utility/addressof_test.cpp +libs/utility/assert.html +libs/utility/Assignable.html +libs/utility/base_from_member.html +libs/utility/base_from_member_test.cpp +libs/utility/call_traits.htm +libs/utility/call_traits_test.cpp +libs/utility/checked_delete.html +libs/utility/Collection.html +libs/utility/compressed_pair.htm +libs/utility/CopyConstructible.html +libs/utility/current_function.html +libs/utility/enable_if.html +libs/utility/generator_iterator.htm +libs/utility/index.html +libs/utility/in_place_factories.html +libs/utility/iterator_adaptors.htm +libs/utility/iterators_test.cpp +libs/utility/LessThanComparable.html +libs/utility/MultiPassInputIterator.html +libs/utility/noncopyable_test.cpp +libs/utility/operators.htm +libs/utility/operators_test.cpp +libs/utility/OptionalPointee.html +libs/utility/shared_container_iterator.html +libs/utility/shared_iterator_example1.cpp +libs/utility/shared_iterator_example2.cpp +libs/utility/shared_iterator_example3.cpp +libs/utility/swap.html +libs/utility/throw_exception.html +libs/utility/utility.htm +libs/utility/value_init.htm +libs/variant/index.html +libs/wave/doc/acknowledgements.html +libs/wave/doc/class_ref_ctxpolicy_depr.html +libs/wave/doc/class_reference_context.html +libs/wave/doc/class_reference_ctxpolicy.html +libs/wave/doc/class_reference_filepos.html +libs/wave/doc/class_reference_inptpolcy.html +libs/wave/doc/class_reference_lexer.html +libs/wave/doc/class_reference_tokentype.html +libs/wave/doc/compiletime_config.html +libs/wave/doc/introduction.html +libs/wave/doc/macro_expansion_process.html +libs/wave/doc/predefined_macros.html +libs/wave/doc/preface.html +libs/wave/doc/quickstart.html +libs/wave/doc/references.html +libs/wave/doc/samples.html +libs/wave/doc/supported_pragmas.html +libs/wave/doc/theme/bkd2.gif +libs/wave/doc/theme/bkd.gif +libs/wave/doc/theme/bullet.gif +libs/wave/doc/theme/l_arr_disabled.gif +libs/wave/doc/theme/l_arr.gif +libs/wave/doc/theme/r_arr_disabled.gif +libs/wave/doc/theme/r_arr.gif +libs/wave/doc/theme/style.css +libs/wave/doc/theme/u_arr.gif +libs/wave/doc/theme/wave.gif +libs/wave/doc/token_ids.html +libs/wave/doc/tracing_facility.html +libs/wave/doc/wave_driver.html +libs/wave/index.html +libs/xpressive/index.html +LICENSE_1_0.txt +more/faq.htm +more/getting_started.html +more/getting_started/index.html +more/getting_started/unix-variants.html +more/getting_started/windows.html +more/index.htm +more/writingdoc/design.html +more/writingdoc/index.html +more/writingdoc/introduction.html +more/writingdoc/structure.html +more/writingdoc/template/acknowledgments.html +more/writingdoc/template/bibliography.html +more/writingdoc/template/configuration.html +more/writingdoc/template/definitions.html +more/writingdoc/template/faq.html +more/writingdoc/template/header.html +more/writingdoc/template/index.html +more/writingdoc/template/overview.html +more/writingdoc/template/rationale.html +people/people.htm +rst.css +tools/bcp/bcp.html +tools/build/index.html +tools/build/v2/boost_build.png +tools/build/v2/hacking.txt +tools/build/v2/index.html +tools/index.html +tools/inspect/build/Jamfile.v2 +tools/inspect/build/msvc/readme.txt +tools/inspect/index.html +tools/inspect/inspect.cpp +tools/inspect/inspector.hpp +tools/inspect/link_check.cpp +tools/inspect/link_check.hpp +tools/inspect/path_name_check.cpp +tools/inspect/path_name_check.hpp +tools/inspect/tab_check.cpp +tools/inspect/tab_check.hpp +tools/jam/index.html +tools/quickbook/doc/html/images/extra/katepart/boost.hs.logo.png +tools/quickbook/doc/html/images/extra/katepart/table.boost.hs.png +tools/quickbook/doc/html/images/extra/katepart/table.text.editor.png +tools/quickbook/doc/quickbook.qbk +tools/quickbook/index.html +tools/quickbook/test/stub.cpp +tools/regression/doc/index.html +tools/regression/doc/library_status.html +tools/regression/index.html +tools/regression/src/compiler_status.cpp +tools/regression/src/process_jam_log.cpp +tools/release/index.html --- boost1.41-1.41.0.orig/debian/libboost-doc.doc-base.in +++ boost1.41-1.41.0/debian/libboost-doc.doc-base.in @@ -0,0 +1,16 @@ +Document: boost +Title: Boost C++ Libraries +Author: The Boost.org collaboration +Abstract: The Boost web site provides free peer-reviewed portable + C++ source libraries. The emphasis is on libraries which work + well with the C++ Standard Library. One goal is to establish + "existing practice" and provide reference implementations so that + the Boost libraries are suitable for eventual + standardization. Some of the libraries have already been proposed + for inclusion in the C++ Standards Committee's upcoming C++ + Standard Library Technical Report. +Section: Programming/C++ + +Format: HTML +Index: /usr/share/doc/libboost@PKGVERSION@-doc/HTML/index.htm +Files: /usr/share/doc/libboost@PKGVERSION@-doc/HTML/* --- boost1.41-1.41.0.orig/debian/README.Debian +++ boost1.41-1.41.0/debian/README.Debian @@ -0,0 +1,119 @@ +Help Save the World +------------------- + +Boost is a fairly extensive set of libraries, of which I personally +use but a very small part. I greatly appreciate folks that send +patches to the BTS. Please do have a look at the outstanding bug +reports and send me hints or patches if you have extra information. + + +Getting Started +--------------- + +The following table shows which components use a library (shared or +static) and the corresponding "-l" flag. All libraries are built +for multithreaded applications. + + Component Link Flag Library Type + --------- --------- ------------ + Boost.Date_Time -lboost_date_time static shared + Boost.Filesystem -lboost_filesystem static shared + Boost.Graph -lboost_graph static shared + Boost.Graph_parallel -lboost_graph_parallel static shared + Boost.IOStreams -lboost_iostreams static shared + Boost.Math -lboost_math_c99 static shared + -lboost_math_c99f static shared + -lboost_math_c99l static shared + -lboost_math_tr1 static shared + -lboost_math_tr1f static shared + -lboost_math_tr1l static shared + Boost.MPI -lboost_mpi static shared + Boost.Program_options -lboost_program_options static shared + Boost.Python -lboost_python-py24 static shared + -lboost_python-py25 static shared + Boost.Regex -lboost_regex static shared + Boost.Serialization -lboost_serialization static shared + -lboost_wserialization static shared + Boost.Signals -lboost_signals static shared + Boost.System -lboost_system static shared + Boost.Test -lboost_prg_exec_monitor static shared + -lboost_unit_test_framework static shared + Boost.Thread -lboost_thread static shared + Boost.Wave -lboost_wave static shared + + +Most of Boost is installed using the package libboostX.Y-dev. +The components with a shared library have separate -dev packages. + +There is extensive documentation available in the libboostX.Y-doc +package and at www.boost.org. + + +Debian Packaging of Boost +------------------------- + +Upstream releases quarterly without guarenteeing any backwards +compatibility. Debian chooses to package two versions of Boost +simultaneously, to enable users to make the transition on their own +time. The -dev packages are decorated with the Boost version, +e.g. libboost1.39-dev and libboost1.40-dev. If your code builds only +with a specific version of boost, you can directly install that +specific version. + +On the other hand, many of the mature Boost libraries hardly change +from one version to the next. If your code uses only such stable +libraries, then continually installing versioned -dev packages is a +nuisance. Debian therefore has a set of "default" Boost development +packages without a version number; e.g. libboost-dev. These packages +will pull in the version of boost considered most suitable at any +given time. If your code is not tied to a specific Boost version, you +can use the unversioned development packages. + +This strategy was hashed out on debian-release in the Spring of 2009. +See threads starting at: + http://lists.debian.org/debian-release/2009/03/msg00147.html + http://lists.debian.org/debian-release/2009/04/msg00251.html + http://lists.debian.org/debian-release/2009/05/msg00011.html + + +Example Code +------------ + +All example code is shipped in libboostX.Y-doc package. + +Some of the example code is linked to by the documentation, and thus +appears in a directory named + + /usr/share/doc/libboostX.Y-doc/HTML/libs/*/example + +Example code that is not linked from the documentation appears in a +directory under + + /usr/share/doc/libboostX.Y-doc/examples/libs/ + + +Use of boost/nondet_random.hpp +------------------------------ + +The use of this header file is subject to the availability of class +boost::random_device::impl. Boost libraries provide only an example +implementation which the user may use to fit her needs. + +Such implementation is distributed by libboostX.Y-dev Debian package +in file /usr/share/doc/libboostX.Y-dev/examples/random_device.cpp. +This file is generally good enough for most linux users. Simply +copy and modify to suit your needs. + + +Boost.Test main() function +-------------------------- + +The Boost unit test framework defines a main() function in the static +library boost_unit_test_framework.a. Prior to v 1.34, the shared +library also defined main() but it no longer does. + +Please see the manual and the following thread for more details + http://lists.boost.org/boost-users/2008/03/34486.php + + + -- Steve M. Robbins , Sat, 19 Sep 2009 15:16:51 z --- boost1.41-1.41.0.orig/debian/pyste.1 +++ boost1.41-1.41.0/debian/pyste.1 @@ -0,0 +1,84 @@ +.TH PYSTE "1" "March 2008" "Pyste version 0.9.30" "User Commands" + +.SH NAME +Pyste \- Boost.Python code generator + +.SH SYNOPSIS +pyste [options] interface\-files + +.SH DESCRIPTION + +Pyste is a Boost.Python code generator. The user specifies the classes +and functions to be exported using a simple interface file which, +following the Boost.Python's philosophy, is simple Python code. Pyste +then uses GCCXML to parse all the headers and extract the necessary +information to automatically generate C++ code. + +.TP +\fB\-\-module=\fR +The name of the module that will be generated; +defaults to the first interface filename, without +the extension. +.TP +\fB\-I\fR +Add an include path +.TP +\fB\-D\fR +Define symbol +.TP +\fB\-\-multiple\fR +Create various cpps, instead of only one +(useful during development) +.TP +\fB\-\-out=\fR +Specify output filename (default: .cpp) +in \fB\-\-multiple\fR mode, this will be a directory +.TP +\fB\-\-no\-using\fR +Do not declare "using namespace boost"; +use explicit declarations instead +.TP +\fB\-\-pyste\-ns=\fR +Set the namespace where new types will be declared; +default is the empty namespace +.TP +\fB\-\-debug\fR +Writes the xml for each file parsed in the current +directory +.TP +\fB\-\-cache\-dir=\fR +Directory for cache files (speeds up future runs) +.TP +\fB\-\-only\-create\-cache\fR +Recreates all caches (doesn't generate code). +.TP +\fB\-\-generate\-main\fR +Generates the _main.cpp file (in multiple mode) +.TP +\fB\-\-file\-list\fR +A file with one pyste file per line. Use as a +substitute for passing the files in the command +line. +.TP +\fB\-\-gccxml\-path=\fR +Path to gccxml executable (default: gccxml) +.TP +\fB\-\-no\-default\-include\fR +Do not use INCLUDE environment variable for include +files to pass along gccxml. +.TP +\fB\-h\fR, \fB\-\-help\fR +Print this help and exit +.TP +\fB\-v\fR, \fB\-\-version\fR +Print version information + +.SH "SEE ALSO" + +The full documentation for +.B Pyste +is maintained in HTML format. If you have the +.B libboost-doc +package installed, the manual starts at +.IP +.B /usr/share/doc/libboost-doc/HTML/libs/python/pyste/index.html --- boost1.41-1.41.0.orig/debian/check-interdep.sh +++ boost1.41-1.41.0/debian/check-interdep.sh @@ -0,0 +1,27 @@ +#! /bin/sh + +# TODO check no missing compare to: +# bjam --show-libraries +libs='date_time +filesystem +graph +graph_parallel +iostreams +math +mpi +program_options +python +regex +serialization +signals +system +test +thread +wave' + +for l in $libs; do + for f in $libs; do + [ $l = $f ] && continue + rgrep -q boost/$f /usr/include/boost/$l && echo $l depends on $f + done +done --- boost1.41-1.41.0.orig/debian/rules +++ boost1.41-1.41.0/debian/rules @@ -0,0 +1,347 @@ +#! /usr/bin/make -f + +include /usr/share/quilt/quilt.make + +export DH_OPTIONS + +# set the number of build jobs +ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + JOBS := -j$(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) +endif + +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) + +PKGVERSION = 1.41 +SOVERSION = 1.41.0 +SHLIBS_VERSION = (>= 1.41.0-1) + +# Boost libraries for which we want separate packages +boost_libs := date-time filesystem graph-parallel graph iostreams math \ + mpi mpi-python \ + program-options python regex serialization signals system test \ + thread wave + +# these are special cases, where shared library has not the same name of the Boost library +boost_lib_math := math_c99 math_c99f math_tr1 math_tr1f +boost_lib_math_long_double := math_c99l math_tr1l +boost_lib_serialization := serialization wserialization +boost_lib_test := prg_exec_monitor unit_test_framework + +# These are special cases for suffixes. Generally come from --xpythonid, so begin with a dash. +boost_suffixes_python := $(addprefix -py,$(subst .,,$(shell pyversions -rv))) +boost_suffixes_mpi-python := $(boost_suffixes_python) + +# Files that are generated by filtering a template +filtered_files = \ + debian/libboost-doc.doc-base \ + debian/libboost-python-dev.postinst \ + debian/libboost-python-dev.prerm + +# Function to map Boost component name to set of shared library names +# Input: Boost component name +# Return: shared library names for the given Boost library +boost_lib = $(if $(boost_lib_$(1)), $(boost_lib_$(1)), $(1)) + +# Function to map Boost component name to set of suffixes for the library +# Input: Boost component name +# Return: suffixes for the given Boost component +boost_suffixes = $(if $(boost_suffixes_$(1)), $(boost_suffixes_$(1)),"") + +# Helpers to make basic and decorated library names +# Input: library, variant, suffix +# Return: base library filename for short or full name +mk_base_name = usr/lib/libboost_$(subst -,_,$(1))$(2)$(3) + +# Input: component, variant +# Return: package name for shared library or development +mk_pkg_lib = libboost$(if $(findstring -d,$(2)),$(PKGVERSION)-dbg,-$(1)$(SOVERSION)) +mk_pkg_dev = libboost$(if $(findstring -d,$(2)),$(PKGVERSION)-dbg,-$(1)$(PKGVERSION)-dev) + +# Helpers to generate debhelper input filenames. +# Input: component, variant +# Return: prefix to debhelper filenames +mk_deb_lib = debian/$(call mk_pkg_lib,$(1),$(2)) +mk_deb_dev = debian/$(call mk_pkg_dev,$(1),$(2)) + +# Helpers that update debhelper .install or .links files +# Input: component, library, variant, suffix +# Output: none +mk_so_files = $(shell echo debian/tmp/$(call mk_base_name,$(2),$(3),$(4)).so.$(SOVERSION) >> $(call mk_deb_lib,$(1),$(3)).install) +mk_a_files = $(shell echo debian/tmp/$(call mk_base_name,$(2),$(3),$(4)).a >> $(call mk_deb_dev,$(1),$(3)).install) +mk_ln_files = $(shell echo $(call mk_base_name,$(2),$(3),$(4)).so.$(SOVERSION) $(call mk_base_name,$(2),$(3),$(4)).so >> $(call mk_deb_dev,$(1),$(3)).links) + +# Make compatibility symlinks libfoo-mt --> libfoo +mk_mtso_files = $(shell echo $(call mk_base_name,$(2),$(3),$(4)).so.$(SOVERSION) $(call mk_base_name,$(2),$(3)-mt,$(4)).so >> $(call mk_deb_dev,$(1),$(3)).links) +mk_mta_files = $(shell echo $(call mk_base_name,$(2),$(3),$(4)).a $(call mk_base_name,$(2),$(3)-mt,$(4)).a >> $(call mk_deb_dev,$(1),$(3)).links) + +# Function that updates debhelper files for a given library variant +# Input: component, library, variant, suffix +# Output: none +mk_files = $(foreach fn,a so ln mtso mta,$(call mk_$(fn)_files,$(1),$(2),$(3),$(4))) + +# helpers to make and install lintian override files + +# Input: package, override +add_override = echo $(1): $(2) >> debian/$(1).lintian-overrides; + +# Input: override +add_dbg_override = $(call add_override,libboost$(PKGVERSION)-dbg,$(1)) +add_dev_override = $(call add_override,libboost$(PKGVERSION)-dev,$(1)) +add_doc_override = $(call add_override,libboost$(PKGVERSION)-doc,$(1)) + +# Input: component, variant, lintian-warning +add_lib_override = $(call add_override,$(call mk_pkg_lib,$(1),$(2)),$(3)) +add_libdev_override = $(call add_override,$(call mk_pkg_dev,$(1),$(2)),$(3)) + +cp_debhelper = for s in doc-base examples postinst prerm README.Debian; do \ + if test -f debian/$(1).$$s; then cp -f debian/$(1).$$s debian/$(2).$$s; fi; done + +# Function that updates debhelper files for all library variants shipped. +mk_debhelper_files = \ + $(call add_dbg_override,package-name-doesnt-match-sonames) \ + $(call add_dbg_override,non-dev-pkg-with-shlib-symlink) \ + $(call add_dbg_override,dbg-package-missing-depends) \ + $(call add_dev_override,description-synopsis-starts-with-a-capital-letter) \ + $(call add_dev_override,spelling-error-in-description) \ + $(call add_dev_override,extra-license-file) \ + $(call add_doc_override,description-synopsis-starts-with-a-capital-letter) \ + $(call add_doc_override,extra-license-file) \ + $(call add_libdev_override,python,,description-synopsis-starts-with-a-capital-letter) \ + $(foreach l, $(boost_libs), \ + echo "making debhelper files for $(l)..."; \ + $(call add_lib_override,$(l),,package-name-doesnt-match-sonames) \ + $(foreach ll, $(call boost_lib,$(l)), \ + $(foreach suf, $(call boost_suffixes,$(l)), \ + $(call mk_files,$(l),$(ll),,$(suf)) \ + ) \ + ) \ + ) + +TOOLSET_CONFIG="using gcc : : : -D_REENTRANT ;" +BUILD_LONG_DOUBLE = yes + +ifeq ($(DEB_BUILD_ARCH), hppa) +TOOLSET_CONFIG="using gcc : : : -D_REENTRANT -mlong-calls -DBOOST_SP_USE_PTHREADS ;" +BUILD_LONG_DOUBLE = no +else ifeq ($(DEB_BUILD_ARCH), arm) +BUILD_LONG_DOUBLE = no +else ifeq ($(DEB_BUILD_ARCH), armel) +BUILD_LONG_DOUBLE = no +else ifeq ($(DEB_BUILD_ARCH), mips) +BUILD_LONG_DOUBLE = no +else ifeq ($(DEB_BUILD_ARCH), mipsel) +BUILD_LONG_DOUBLE = no +else ifeq ($(DEB_BUILD_ARCH), sh4) +BUILD_LONG_DOUBLE = no +endif + +ifeq ($(BUILD_LONG_DOUBLE), yes) +boost_lib_math += $(boost_lib_math_long_double) +else +JAM_OPT += --disable-long-double +endif + +MPI_CONFIG = "using mpi ;" + +exampledir = debian/libboost$(PKGVERSION)-doc/usr/share/doc/libboost$(PKGVERSION)-doc/examples +htmldir = debian/libboost$(PKGVERSION)-doc/usr/share/doc/libboost$(PKGVERSION)-doc/HTML +pyste_prefix = $(CURDIR)/debian/libboost-python$(PKGVERSION)-dev/usr +bjam = $(CURDIR)/bjam + +# FIXME: find a flag to disable reading /etc/site-config.jam +JAM = $(bjam) $(JOBS) -d2 $(JAM_OPT) --layout=system --user-config=$(CURDIR)/user-config.jam debug-symbols=on + +$(bjam): $(QUILT_STAMPFN) + ./bootstrap.sh --with-icu --prefix=$(CURDIR)/debian/tmp/usr + +user-config.jam: + echo $(TOOLSET_CONFIG) > $@ + echo $(MPI_CONFIG) >> $@ + for pyver in $(filter-out $(shell pyversions -dv),$(shell pyversions -rv)); do \ + echo "using python : $$pyver : /usr ;" >> $@; \ + done + +build: build-stamp +build-stamp: $(QUILT_STAMPFN) $(bjam) user-config.jam + dh_testdir + + $(JAM) --without-python + for pyver in $(shell pyversions -rv); do \ + pyid=$$(echo $$pyver | tr -d .); \ + echo "Building Boost.Python for python version $pyver"; \ + $(JAM) --with-python --with-mpi --xpythonid=py$$pyid python=$$pyver; \ + mv stage/lib/mpi.so stage/lib/mpi-py$$pyid.so; \ + done + + cd tools/bcp && $(JAM) + cd tools/inspect/build && $(JAM) + cd tools/quickbook && $(JAM) + cd tools/wave/build && $(JAM) + cd tools/regression/build && $(JAM) + cd libs/python/pyste/install && python setup.py build + + touch build-stamp + +$(filtered_files): % : %.in + sed -e 's/@PKGVERSION@/$(PKGVERSION)/g' < $< > $@ + +clean-debhelper: + rm -rf debian/*.install + rm -rf debian/*.links + rm -rf debian/*.lintian-overrides + +clean: unpatch clean-debhelper + dh_testdir + dh_testroot + rm -f build-stamp + + -cd tools && $(JAM) clean + -$(JAM) clean + -cd libs/python/pyste/install && python setup.py clean + + rm -rf libs/python/pyste/install/build + rm -rf tools/jam/src/bootstrap + rm -rf tools/jam/src/bin.* + rm -ff tools/jam/src/bjam + rm -rf tools/regression/build/bin + rm -rf bin.v2 dist + rm -rf user-config.jam + + dh_clean build-stamp + +# This rule is for debugging debian/rules. +make-debhelper: clean-debhelper + @$(call mk_debhelper_files) + +install: DH_OPTIONS=-X.svn +install: build clean-debhelper $(filtered_files) + dh_testdir + dh_testroot + dh_prep + + @$(call cp_debhelper,libboost-dbg,libboost$(PKGVERSION)-dbg) + @$(call cp_debhelper,libboost-dev,libboost$(PKGVERSION)-dev) + @$(call cp_debhelper,libboost-doc,libboost$(PKGVERSION)-doc) + @$(call cp_debhelper,libboost-python-dev,libboost-python$(PKGVERSION)-dev) + @$(call cp_debhelper,libboost-mpi-python-dev,libboost-mpi-python$(PKGVERSION)-dev) + + $(JAM) --prefix=$(CURDIR)/debian/tmp/usr install --without-python + for pyver in $(shell pyversions -rv); do \ + pyid=`echo $$pyver | tr -d .`; \ + $(JAM) --prefix=$(CURDIR)/debian/tmp/usr install --with-python --with-mpi --xpythonid=py$$pyid python=$$pyver; \ + done + + install --mode=755 -D debian/rtupdate debian/tmp/usr/share/python/runtime.d/libboost-python$(PKGVERSION)-dev.rtupdate + install --mode=755 -D debian/rtupdate debian/tmp/usr/share/python/runtime.d/libboost-mpi-python$(PKGVERSION)-dev.rtupdate + + find debian/tmp/usr/include -type f | xargs chmod 644 + find debian/tmp -name .cvsignore | xargs rm -f + find debian -empty -type f | xargs rm -f + + # generate (some) debhelper files + @$(call mk_debhelper_files) + + # package libboost-dbg + + # package libboost$(PKGVERSION)-dev + dh_install -plibboost$(PKGVERSION)-dev \ + debian/tmp/usr/include/boost \ + usr/include + dh_install -plibboost$(PKGVERSION)-dev \ + dist/bin/bcp \ + dist/bin/inspect \ + dist/bin/quickbook \ + usr/bin + dh_installman -plibboost$(PKGVERSION)-dev debian/bcp.1 debian/inspect.1 debian/quickbook.1 + dh_install -plibboost$(PKGVERSION)-dev tools/boostbook/xsl/* usr/share/boostbook/xsl + dh_install -plibboost$(PKGVERSION)-dev tools/boostbook/dtd/* usr/share/boostbook/dtd + + # package libboost-doc + rm -rf $(htmldir) + mkdir -p $(htmldir) + cat debian/documentation-files | xargs cp --parents --target-directory=$(htmldir) + find doc libs -name doc | xargs -n1 cp --archive --target-directory=$(htmldir) + rm -rf $(htmldir)/boost + dh_link -plibboost$(PKGVERSION)-doc \ + usr/include/boost \ + usr/share/doc/libboost$(PKGVERSION)-doc/HTML/boost + # provide a constant symlink to the latest documents + dh_link -plibboost$(PKGVERSION)-doc \ + usr/share/doc/libboost$(PKGVERSION)-doc/HTML \ + usr/share/doc/libboost-doc/HTML + + mkdir -p $(exampledir) + cat debian/example-files | xargs cp -a --parents --target-directory=$(exampledir) + find $(exampledir) -type f | xargs chmod 644 + + + + # package libboost-mpi-python$(SOVERSION) + dh_install -plibboost-mpi-python$(SOVERSION) + for pyver in $(shell pyversions -rv); do \ + pyid=`echo $$pyver | tr -d .`; \ + dh_install -plibboost-mpi-python$(SOVERSION) libs/mpi/build/__init__.py usr/lib/python$$pyver/site-packages/boost; \ + dh_installdirs -plibboost-mpi-python$(SOVERSION) usr/lib/python$$pyver/site-packages/boost; \ + cp stage/lib/mpi-py$$pyid.so debian/libboost-mpi-python$(SOVERSION)/usr/lib/python$$pyver/site-packages/boost/mpi.so; \ + done + # package libboost-mpi-python$(PKGVERSION)-dev + dh_install -plibboost-python$(PKGVERSION)-dev --autodest \ + debian/tmp/usr/share/python/runtime.d/libboost-mpi-python$(PKGVERSION)-dev.rtupdate + # package libboost-python$(PKGVERSION)-dev + dh_install -plibboost-python$(PKGVERSION)-dev --autodest \ + debian/tmp/usr/share/python/runtime.d/libboost-python$(PKGVERSION)-dev.rtupdate + + cd libs/python/pyste/install && python setup.py install --no-compile --prefix=$(pyste_prefix) --install-lib=$(pyste_prefix)/share/python-support/pyste + mv $(pyste_prefix)/bin/pyste.py $(pyste_prefix)/bin/pyste + dh_installman -plibboost-python$(PKGVERSION)-dev debian/pyste.1 + + +# This single target is used to build all the packages, all at once, or +# one at a time. So keep in mind: any options passed to commands here will +# affect _all_ packages. Anything you want to only affect one package +# should be put in another target, such as the install target. +binary-common: + dh_testdir + dh_testroot + dh_install + dh_installdocs --all debian/README.Debian debian/NEWS.Debian + dh_installexamples + dh_installinfo + dh_installchangelogs + dh_lintian + dh_strip --dbg-package=libboost$(PKGVERSION)-dbg -X"-d-" + dh_link + dh_compress -Xlibboost$(PKGVERSION)-doc/HTML + dh_pysupport + dh_fixperms + + @if [ "$(DH_OPTIONS)" = "-a" ]; then \ + echo DH_OPTIONS=-plibboost$(PKGVERSION)-dbg dh_makeshlibs -V"libboost$(PKGVERSION)-dbg $(SHLIBS_VERSION)"; \ + DH_OPTIONS=-plibboost$(PKGVERSION)-dbg dh_makeshlibs -V"libboost$(PKGVERSION)-dbg $(SHLIBS_VERSION)"; \ + for name in $(boost_libs); do \ + lib=libboost-$${name}$(SOVERSION); \ + echo DH_OPTIONS=-p$${lib} dh_makeshlibs -V"$${lib} $(SHLIBS_VERSION)"; \ + DH_OPTIONS=-p$${lib} dh_makeshlibs -V"$${lib} $(SHLIBS_VERSION)"; \ + done; \ + fi + + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture independant packages using the common target. +binary-indep: build install + $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common + +# Build architecture dependant packages using the common target. +binary-arch: build install + $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common + +# Any other binary targets build just one binary package at a time. +binary-%: build install + $(MAKE) -f debian/rules binary-common DH_OPTIONS=-p$* + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary-common binary install --- boost1.41-1.41.0.orig/debian/source/format +++ boost1.41-1.41.0/debian/source/format @@ -0,0 +1 @@ +3.0 --- boost1.41-1.41.0.orig/debian/libboost-mpi-python-dev.prerm.in +++ boost1.41-1.41.0/debian/libboost-mpi-python-dev.prerm.in @@ -0,0 +1,10 @@ +#! /bin/sh + +set -e + +update=/usr/share/python/runtime.d/libboost-mpi-python@PKGVERSION@-dev.rtupdate + +$update remove + +#DEBHELPER# + --- boost1.41-1.41.0.orig/debian/rtupdate +++ boost1.41-1.41.0/debian/rtupdate @@ -0,0 +1,60 @@ +#! /bin/sh +# +# Update link-library symlinks after a Python default runtime change + +set -e + +die() { + echo "$@" >&2 + exit 1 +} + +update_linklibs() { + py=$1 + suf=$2 + + cd /usr/lib + for base in libboost_python libboost_mpi_python; do + target=${base}-${py}.${suf} + link=${base}.${suf} + test -e $target && ln -s -f $target $link || rm -f $link + done +} + +remove_linklibs() { + suf=$1 + + cd /usr/lib + for thread in "" -mt; do + rm -f libboost_python${thread}.${suf} + rm -f libboost_mpi_python${thread}.${suf} + done +} + +rtupdate() { + case "$1" in + python*) py=py`echo ${1#python} | tr -d .` ;; + *) remove ; return ;; + esac + + update_linklibs $py a + update_linklibs $py so +} + +remove() { + remove_linklibs a + remove_linklibs so +} + + +action="$1" +shift + +case "$action" in + pre-rtupdate) ;; + post-rtupdate) ;; + rtupdate) rtupdate $2 ;; + remove) remove ;; + *) die "$0 called with unknown argument '$action'" ;; +esac + --- boost1.41-1.41.0.orig/debian/NEWS.Debian +++ boost1.41-1.41.0/debian/NEWS.Debian @@ -0,0 +1,80 @@ +boost1.39 (1.39.0-4) unstable; urgency=low + + Since only one (the multi-threaded) variant of each library is built, + upstream elected to simplify the library name by removing the + redundant "-mt" decoration. Debian will follow this convention, to + remain compatible at link time with other vendors. The preferred form + of the link option is now "-lboost_regex", etc. + + In response to the Debian 1.37 package, a number of boost-using + packages changed their build system to add "-mt"; see entry below. To + avoid breaking all these packages, Debian is providing compatibility + symlinks with the "-mt" decoration; e.g. "-lboost_regex-mt" continues + to work. However, note that this name is not compatible with other + distributions, so build-system authors are encouraged to use the + undecorated name. + + -- Steve M. Robbins Sun, 30 Aug 2009 14:47:14 -0500 + +boost1.37 (1.37.0-1) unstable; urgency=low + + The single-threaded variant of the libraries is no longer built. + Prior to this, -lboost_regex was the single-threaded variant and + -lboost_regex-mt was the multi-threaded variant of Boost.Regex. Any + software using "-lboost_regex" will need to now use "-lboost_regex-mt" + instead (and similar for all other libraries, of course). + + -- Steve M. Robbins Sun, 09 Nov 2008 15:46:50 -0600 + +boost1.35 (1.35.0-1) unstable; urgency=low + + All packages now incorporate the boost version. The -doc, -dbg, and + -dev packages are labelled with 1.35 under the assumption that 1.35.x + will all be API compatible. The shared lib packages are labelled with + the SOVERSION (1.35.0) as always. The new packages conflict with the + old (versions 1.34.x) since they install into the same directories. + The new packages have a new source name, however, so both 1.34 and + 1.35 will be available from the Debian repository. + + Removed package bcp. The binary "bcp" is now found in libboost-dev. + + Removed package pyste. The binary "pyste" is now found in + libboost-python-dev. + + -- Steve M. Robbins Wed, 07 May 2008 02:38:44 -0500 + +boost (1.34.0-1) unstable; urgency=low + + The boost library short name has changed semantics in Debian. Prior to + 1.34.0-1, the short name was multi-threaded. Now it is single + threaded. + + Boost library names encode the SOVERSION and build characteristics of + the library, including the compiler used (gcc41) and whether + multi-threading is enabled (-mt if so). This leads to long names like + libboost_wserialization-gcc42-mt-1_34_1.so.1.34.1 + [http://www.boost.org/more/getting_started/unix-variants.html#library-naming] + that are hard to discover in the build system of boost-using software. + + Prior to 1.34.0-1, Debian packages provided a NON-PORTABLE short form + of the library name as a convenience. The short form + (e.g. libboost_wserialization.so) did not have the compiler or "-mt" + strings in the name, even though it was the multi-thread flavour. + + Other distributions, e.g. Fedora, use the so-called "layout=system" + install and also have shorter-named boost libraries. However, the + short-named libraries are the single-threaded flavour. The + multi-threaded flavour has "-mt" appended, + e.g. libboost_wserialization-mt.so). + + After some discussion, both internal and on bug reports #429533, + #424038, #425264, #428419, #431502, and #425992, we decided to bring + the Debian names in line with "layout=system", hence compatible with + other distributions. This means that the short name has changed + semantics from being the multi-threaded flavour to being now the + single-threaded flavour. + + To summarize: if you're linking to libboostX for a multi-threaded + application, append "-mt". + + -- Domenico Andreoli Mon, 14 May 2007 00:06:49 +0200 --- boost1.41-1.41.0.orig/debian/libboost-python-dev.prerm.in +++ boost1.41-1.41.0/debian/libboost-python-dev.prerm.in @@ -0,0 +1,10 @@ +#! /bin/sh + +set -e + +update=/usr/share/python/runtime.d/libboost-python@PKGVERSION@-dev.rtupdate + +$update remove + +#DEBHELPER# + --- boost1.41-1.41.0.orig/debian/changelog +++ boost1.41-1.41.0/debian/changelog @@ -0,0 +1,5 @@ +boost1.41 (1.41.0-1~jaunty6) jaunty; urgency=low + + * PPA push. + + -- Tim 'mithro' Ansell Sat, 04 Apr 2009 00:41:36 -0500 --- boost1.41-1.41.0.orig/debian/libboost-dev.examples +++ boost1.41-1.41.0/debian/libboost-dev.examples @@ -0,0 +1 @@ +libs/random/random_device.cpp --- boost1.41-1.41.0.orig/debian/inspect.1 +++ boost1.41-1.41.0/debian/inspect.1 @@ -0,0 +1,47 @@ +.TH INSPECT "1" "July 2009" "inspect " "User Commands" +.SH NAME +inspect \- Boost code inspection tool +.SH SYNOPSIS +.B inspect +[\fI-cvs\fR] [\fI-text\fR] [\fI-brief\fR] [\fIoptions\fR...] +.SH DESCRIPTION +It is not uncommon for various common errors or guideline violations +to creep into the Boost libraries. The +.B inspect +program detects and +reports several common problems. It can be used to scan a proposed +Boost submission to identify various failures. +.PP +The program is run in the directory to be scanned for +errors. Sub-directories are also included in the scan. +.PP +If the first program argument is -cvs, only files and directories in +the CVS tree of the current directory are scanned. Otherwise all files +and sub-directories are included in the scan. +.IP +Options: +.HP +\fB\-license\fR +.HP +\fB\-copyright\fR +.HP +\fB\-crlf\fR +.HP +\fB\-link\fR +.HP +\fB\-path_name\fR +.HP +\fB\-tab\fR +.HP +\fB\-ascii\fR +.HP +\fB\-minmax\fR +.HP +\fB\-unnamed\fR +.IP +The default is to have all checks on; otherwise options specify desired checks. +.SH "SEE ALSO" +The full documentation for +.B inspect +is maintained in HTML; +see /usr/share/doc/libboostX.Y-doc/HTML/tools/inspect/index.html --- boost1.41-1.41.0.orig/debian/example-files +++ boost1.41-1.41.0/debian/example-files @@ -0,0 +1,56 @@ +doc/html/boost_asio/example +doc/html/date_time/examples +libs/signals2/example +libs/exception/example +libs/flyweight/example +libs/proto/example +libs/property_map/example +libs/xpressive/example +libs/functional/hash/examples +libs/intrusive/example +libs/preprocessor/doc/examples +libs/format/example +libs/dynamic_bitset/example +libs/filesystem/example +libs/multi_index/example +libs/serialization/example +libs/algorithm/string/example +libs/algorithm/minmax/example +libs/statechart/example +libs/math/example +libs/fusion/example +libs/multi_array/example +libs/graph/example +libs/iterator/example +libs/python/example +libs/signals/example +libs/scope_exit/example +libs/interprocess/example +libs/mpl/example +libs/test/example +libs/test/doc/src/examples +libs/iostreams/example +libs/numeric/interval/examples +libs/graph_parallel/example +libs/date_time/example +libs/smart_ptr/example +libs/thread/example +libs/asio/example +libs/function/example +libs/spirit/phoenix/example +libs/spirit/classic/phoenix/example +libs/spirit/classic/example +libs/spirit/example +libs/unordered/examples +libs/units/example +libs/regex/example +libs/gil/example +libs/program_options/example +libs/accumulators/example +libs/type_traits/examples +libs/type_traits/doc/html/boost_typetraits/examples +libs/bimap/example +libs/bimap/doc/html/boost_bimap/examples +libs/mpi/example +libs/function_types/example +tools/build/v2/example --- boost1.41-1.41.0.orig/debian/README.source +++ boost1.41-1.41.0/debian/README.source @@ -0,0 +1,4 @@ +This package uses the quilt system of patch handling. +See /usr/share/doc/quilt/README.source for more details. + + -- Steve M. Robbins , Sat, 29 Aug 2009 10:06:07 z