--- boost1.38-1.38.0.orig/debian/pyste.1 +++ boost1.38-1.38.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.38-1.38.0.orig/debian/libboost-dbg.prerm.in +++ boost1.38-1.38.0/debian/libboost-dbg.prerm.in @@ -0,0 +1,10 @@ +#! /bin/sh + +set -e + +update=/usr/share/python/runtime.d/libboost@PKGVERSION@-dbg.rtupdate + +$update remove + +#DEBHELPER# + --- boost1.38-1.38.0.orig/debian/Notes +++ boost1.38-1.38.0/debian/Notes @@ -0,0 +1,93 @@ + GCC 4.3 Patches + --------------- + +As of 2009-02-21, there are a number of issues with respect to GCC +4.3. A post on the Boost list gives a query to list all the open +reports in the Boost trac system: + + http://svn.boost.org/trac/boost/query?status=new&status=assigned&status=reopened&summary=~4.3&order=priority + +Here we track the open tickets and status with respect to the Debian +patch series. + + Ticket Inc? Comment + ------ ---- ---------------------------------- + 1605 no Library property_tree not present in 1.38 + 1955 no Library property_tree not present in 1.38 + 2321 no Warning + 2388 no Warning + 2390 no Warning + 2582 yes boost_python_translate_exception.patch + 2680 no Test suite failure, no patch. + + + Thread Support + -------------- + +All debian libraries are supposed to be built with _REENTRANT defined +(policy 10.2). For the jam-built libraries, use "_REENTRANT" +on command line in debian/rules. For graph library, set in Makefile. + +The __sync functions are giving problems. I think that atomic_count.hpp +is finally patched. It looks like sp_counted_base.hpp is still a +problem on m68k. Revisit the strategy of using DBOOST_SP_USE_PTHREADS +for the arches that don't have __sync; upsteam now has a spinlock-based +default version of sp_counted_base. + + + 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.38-1.38.0.orig/debian/rules +++ boost1.38-1.38.0/debian/rules @@ -0,0 +1,453 @@ +#! /usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export DH_OPTIONS + +include /usr/share/quilt/quilt.make + +# 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.38 +SOVERSION = 1.38.0 +SHLIBS_VERSION = (>= 1.38.0-1) + +# tags for library name decoration +boost_version = 1_38 + +# Boost libraries for which we want separate packages +boost_libs := date-time filesystem graph iostreams math \ + 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 variants. normal cases have , -d, -mt, -mt-d variants +boost_variants_thread := -mt -mt-d + +# These are special cases for suffixes. Generally come from --buildid, so begin with a dash. +boost_suffixes_python := -py25 -py26 + +# Files that are generated by filtering a template +filtered_files = \ + debian/libboost-dbg.postinst \ + debian/libboost-dbg.prerm \ + 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 variants for the library +# Input: Boost component name +# Return: variants for the given Boost component +boost_variants = $(if $(boost_variants_$(1)), $(boost_variants_$(1)), -mt -mt-d) + +# 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) + +# Function that updates debhelper files for a given library variant +# Input: component, library, variant, suffix +# Output: none +mk_files = $(foreach fn,a so ln,$(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_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 v, $(call boost_variants,$(l)), \ + $(foreach suf, $(call boost_suffixes,$(l)), \ + $(call mk_files,$(l),$(ll),$(subst -st,,$(v)),$(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 +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 ;" +PYTHON_CONFIG1 = "using python : 2.5 : /usr ;" +PYTHON_CONFIG2 = "using python : 2.6 : /usr ;" + +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)/tools/jam/src/bjam + +# FIXME: find a flag to disable reading /etc/site-config.jam +JAM = $(bjam) $(JOBS) -d2 $(JAM_OPT) --user-config=$(CURDIR)/user-config.jam -sHAVE_ICU=1 debug-symbols=on +jam_variants = variant=release,debug threading=multi link=shared,static + +$(bjam): + cd tools/jam/src && \ + CFLAGS='-Wall -Werror -fno-strict-aliasing' sh build.sh cc && \ + mv bin.*/bjam . + +user-config.jam: + echo $(TOOLSET_CONFIG) > $@ + echo $(PYTHON_CONFIG1) >> $@ + echo $(PYTHON_CONFIG2) >> $@ + +build: build-stamp +build-stamp: $(QUILT_STAMPFN) $(bjam) user-config.jam + dh_testdir + + $(JAM) --without-python $(jam_variants) + $(JAM) --with-python --buildid=py25 python=2.5 $(jam_variants) + $(JAM) --with-python --buildid=py26 python=2.6 $(jam_variants) + + cd tools/bcp && $(JAM) + cd tools/inspect/build && $(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 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) + + $(JAM) --prefix=$(CURDIR)/debian/tmp/usr $(jam_variants) install + 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$(PKGVERSION)-dbg.rtupdate + + # Remove undecorated Boost.Python libraries and install decorated ones + rm debian/tmp/usr/lib/lib*python* + find bin.v2/libs/python -name libboost_python*-py2* | xargs install -t debian/tmp/usr/lib + + 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 + dh_install -plibboost$(PKGVERSION)-dbg + dh_install -plibboost$(PKGVERSION)-dbg --autodest \ + debian/tmp/usr/share/python/runtime.d/libboost$(PKGVERSION)-dbg.rtupdate + + # package libboost$(PKGVERSION)-dev + dh_install -plibboost$(PKGVERSION)-dev \ + debian/tmp/usr/include/boost-$(boost_version)/boost \ + usr/include + dh_install -plibboost$(PKGVERSION)-dev dist/bin/bcp usr/bin + dh_installman -plibboost$(PKGVERSION)-dev debian/bcp.1 + + # 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 $(htmldir)/doc/html/images/callouts/Thumbs.db + rm -rf $(htmldir)/boost + dh_link -plibboost$(PKGVERSION)-doc \ + usr/include/boost \ + usr/share/doc/libboost$(PKGVERSION)-doc/HTML/boost + + mkdir -p $(exampledir) + cat debian/example-files | xargs cp -a --parents --target-directory=$(exampledir) + find $(exampledir) -type f | xargs chmod 644 + + + # package libboost-date-time$(SOVERSION) + dh_install -plibboost-date-time$(SOVERSION) + # package libboost-date-time$(PKGVERSION)-dev + dh_installdirs -plibboost-date-time$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/date_time* \ + debian/libboost-date-time$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-date-time$(PKGVERSION)-dev + dh_link -plibboost-date-time$(PKGVERSION)-dev + + # package libboost-filesystem$(SOVERSION) + dh_install -plibboost-filesystem$(SOVERSION) + # package libboost-filesystem$(PKGVERSION)-dev + dh_installdirs -plibboost-filesystem$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/filesystem* \ + debian/libboost-filesystem$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-filesystem$(PKGVERSION)-dev + dh_link -plibboost-filesystem$(PKGVERSION)-dev + + # package libboost-graph$(SOVERSION) + dh_install -plibboost-graph$(SOVERSION) + # package libboost-graph$(PKGVERSION)-dev + dh_installdirs -plibboost-graph$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/graph \ + debian/libboost-graph$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-graph$(PKGVERSION)-dev + dh_link -plibboost-graph$(PKGVERSION)-dev + + # package libboost-iostreams$(SOVERSION) + dh_install -plibboost-iostreams$(SOVERSION) + # package libboost-iostreams$(PKGVERSION)-dev + dh_installdirs -plibboost-iostreams$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/iostreams* \ + debian/libboost-iostreams$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-iostreams$(PKGVERSION)-dev + dh_link -plibboost-iostreams$(PKGVERSION)-dev + + # package libboost-math$(SOVERSION) + dh_install -plibboost-math$(SOVERSION) + # package libboost-math$(PKGVERSION)-dev + dh_installdirs -plibboost-math$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/math* \ + debian/libboost-math$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-math$(PKGVERSION)-dev + dh_link -plibboost-math$(PKGVERSION)-dev + + # package libboost-program-options$(SOVERSION) + dh_install -plibboost-program-options$(SOVERSION) + # package libboost-program-options$(PKGVERSION)-dev + dh_installdirs -plibboost-program-options$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/program_options* \ + debian/libboost-program-options$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-program-options$(PKGVERSION)-dev + dh_link -plibboost-program-options$(PKGVERSION)-dev + + # package libboost-python$(SOVERSION) + dh_install -plibboost-python$(SOVERSION) + # package libboost-python$(PKGVERSION)-dev + dh_installdirs -plibboost-python$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/python* \ + debian/libboost-python$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-python$(PKGVERSION)-dev --autodest \ + debian/tmp/usr/share/python/runtime.d/libboost-python$(PKGVERSION)-dev.rtupdate + dh_link -plibboost-python$(PKGVERSION)-dev + + 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 + + # package libboost-regex$(SOVERSION) + dh_install -plibboost-regex$(SOVERSION) + # package libboost-regex$(PKGVERSION)-dev + dh_installdirs -plibboost-regex$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/*regex* \ + debian/libboost-regex$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-regex$(PKGVERSION)-dev + dh_link -plibboost-regex$(PKGVERSION)-dev + + # package libboost-serialization$(SOVERSION) + dh_install -plibboost-serialization$(SOVERSION) + # package libboost-serialization$(PKGVERSION)-dev + dh_installdirs -plibboost-serialization$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/*serialization* \ + debian/libboost-serialization$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-serialization$(PKGVERSION)-dev + dh_link -plibboost-serialization$(PKGVERSION)-dev + + # package libboost-signals$(SOVERSION) + dh_install -plibboost-signals$(SOVERSION) + # package libboost-signals$(PKGVERSION)-dev + dh_installdirs -plibboost-signals$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/*signal* \ + debian/libboost-signals$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-signals$(PKGVERSION)-dev + dh_link -plibboost-signals$(PKGVERSION)-dev + + # package libboost-system$(SOVERSION) + dh_install -plibboost-system$(SOVERSION) + # package libboost-system$(PKGVERSION)-dev + dh_installdirs -plibboost-system$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/system \ + debian/libboost-system$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-system$(PKGVERSION)-dev + dh_link -plibboost-system$(PKGVERSION)-dev + + # package libboost-test$(SOVERSION) + dh_install -plibboost-test$(SOVERSION) + # package libboost-test$(PKGVERSION)-dev + dh_installdirs -plibboost-test$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/test \ + debian/libboost-test$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-test$(PKGVERSION)-dev + dh_link -plibboost-test$(PKGVERSION)-dev + + # package libboost-thread$(SOVERSION) + dh_install -plibboost-thread$(SOVERSION) + # package libboost-thread$(PKGVERSION)-dev + dh_installdirs -plibboost-thread$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/thread* \ + debian/libboost-thread$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-thread$(PKGVERSION)-dev + + # package libboost-wave$(SOVERSION) + dh_install -plibboost-wave$(SOVERSION) + # package libboost-wave$(PKGVERSION)-dev + dh_installdirs -plibboost-wave$(PKGVERSION)-dev usr/include/boost + mv debian/libboost$(PKGVERSION)-dev/usr/include/boost/wave* \ + debian/libboost-wave$(PKGVERSION)-dev/usr/include/boost + dh_install -plibboost-wave$(PKGVERSION)-dev + dh_link -plibboost-wave$(PKGVERSION)-dev + +# 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_installdocs --all debian/README.Debian + dh_installexamples + dh_installinfo + dh_installchangelogs + dh_lintian + dh_strip --dbg-package=libboost1.38-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.38-1.38.0.orig/debian/check-interdep.sh +++ boost1.38-1.38.0/debian/check-interdep.sh @@ -0,0 +1,23 @@ +#! /bin/sh + +libs='date_time +filesystem +graph +iostreams +math +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.38-1.38.0.orig/debian/bcp.1 +++ boost1.38-1.38.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.38-1.38.0.orig/debian/mergeinfo +++ boost1.38-1.38.0/debian/mergeinfo @@ -0,0 +1,45 @@ + Merges from branches/1.37.0 + --------------------------- + +------------------------------------------------------------------------ +r14391 | smr | 2009-03-28 04:44:28 -0500 (Sat, 28 Mar 2009) | 1 line + +Package -dbg is now in section debug. +* merge +------------------------------------------------------------------------ +r14388 | smr | 2009-03-28 02:38:43 -0500 (Sat, 28 Mar 2009) | 1 line + +Do not die if rtupdate called for an unknown python version. +* merge +------------------------------------------------------------------------ +r14385 | smr | 2009-03-22 14:58:27 -0500 (Sun, 22 Mar 2009) | 1 line + +Explain that Boost.Test shared lib does not supply main(). +* merge +------------------------------------------------------------------------ +r14383 | smr | 2009-03-14 16:26:47 -0500 (Sat, 14 Mar 2009) | 1 line + +libboost1.37-dev now suggests libboost1.37-doc rather than recommends. +* merge +------------------------------------------------------------------------ +r14382 | smr | 2009-03-14 16:24:35 -0500 (Sat, 14 Mar 2009) | 1 line + +Add fix_eventfd_select_interrupter.patch. +* skip as fixed in 1.38 +------------------------------------------------------------------------ +r14371 | smr | 2009-02-16 18:35:39 -0600 (Mon, 16 Feb 2009) | 2 lines + +Tagging 1.37.0 before converting trunk to 1.38. +* branch point +------------------------------------------------------------------------ + + + + + Merges Done + ----------- + +Merge command (execute in trunk directory): + + svn -r 14383:14395 merge svn+ssh://smr@svn.debian.org/svn/pkg-boost/boost/branches/1.37.0 + --- boost1.38-1.38.0.orig/debian/README.Debian +++ boost1.38-1.38.0/debian/README.Debian @@ -0,0 +1,89 @@ +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. Note that only the +multithreaded version of the libraries is shipped. + + Component Link Flag Library Type + --------- --------- ------------ + Boost.Date_Time -lboost_date_time-mt static shared + Boost.Filesystem -lboost_filesystem-mt static shared + Boost.Graph -lboost_graph-mt static shared + Boost.IOStreams -lboost_iostreams-mt static shared + Boost.Math -lboost_math_c99-mt static shared + -lboost_math_c99f-mt static shared + -lboost_math_c99l-mt static shared + Boost.MPI -lboost_mpi-mt static shared + Boost.Program_options -lboost_program_options-mt static shared + Boost.Python -lboost_python-mt-py24 static shared + -lboost_python-mt-py25 static shared + Boost.Regex -lboost_regex-mt static shared + Boost.Serialization -lboost_serialization-mt static shared + -lboost_wserialization-mt static shared + Boost.Signals -lboost_signals-mt static shared + Boost.System -lboost_system-mt static shared + Boost.Test -lboost_prg_exec_monitor-mt static shared + -lboost_unit_test_framework-mt static shared + Boost.Thread -lboost_thread-mt static shared + Boost.Wave -lboost_wave-mt 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. + + +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-mt.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://www.nabble.com/Undefined-reference-to-'main'-with-Boost-Test.-Why--td15986217.html + + + + -- Steve M. Robbins , Sun, 22 Mar 2009 14:47:40 z --- boost1.38-1.38.0.orig/debian/libboost-python-dev.postinst.in +++ boost1.38-1.38.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.38-1.38.0.orig/debian/rtupdate +++ boost1.38-1.38.0/debian/rtupdate @@ -0,0 +1,67 @@ +#! /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 thread in "" -mt; do + target=libboost_python${thread}${debug}-${py}.${suf} + link=libboost_python${thread}${debug}.${suf} + test -e $target && ln -s -f $target $link + done +} + +remove_linklibs() { + suf=$1 + + cd /usr/lib + for thread in "" -mt; do + rm -f libboost_python${thread}${debug}.${suf} + done +} + +rtupdate() { + case "$1" in + python2.4) py=py24 ;; + python2.5) py=py25 ;; + python2.6) py=py26 ;; + python2.7) py=py27 ;; + *) remove ; return ;; + esac + + update_linklibs $py a + update_linklibs $py so +} + +remove() { + remove_linklibs a + remove_linklibs so +} + + +debug= +case "$0" in + */libboost*-dbg.rtupdate) debug=-d ;; +esac + +action="$1" +shift + +case "$action" in + pre-rtupdate) ;; + post-rtupdate) ;; + rtupdate) rtupdate $2 ;; + remove) remove ;; + *) die "$0 called with unknown argument '$action'" ;; +esac + --- boost1.38-1.38.0.orig/debian/libboost-doc.doc-base.in +++ boost1.38-1.38.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.38-1.38.0.orig/debian/libboost-dev.examples +++ boost1.38-1.38.0/debian/libboost-dev.examples @@ -0,0 +1 @@ +libs/random/random_device.cpp --- boost1.38-1.38.0.orig/debian/libboost-python-dev.README.Debian +++ boost1.38-1.38.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.38-1.38.0.orig/debian/copyright +++ boost1.38-1.38.0/debian/copyright @@ -0,0 +1,100 @@ +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. + */ + + --- boost1.38-1.38.0.orig/debian/example-files +++ boost1.38-1.38.0/debian/example-files @@ -0,0 +1,52 @@ +doc/html/boost_asio/example +doc/html/date_time/examples +libs/exception/example +libs/flyweight/example +libs/proto/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/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/function_types/example +tools/build/v2/example --- boost1.38-1.38.0.orig/debian/compat +++ boost1.38-1.38.0/debian/compat @@ -0,0 +1 @@ +7 --- boost1.38-1.38.0.orig/debian/control +++ boost1.38-1.38.0/debian/control @@ -0,0 +1,503 @@ +Source: boost1.38 +Homepage: http://www.boost.org/ +Section: libs +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Debian Boost Team +Uploaders: Hossein Ansari , Armin Ildermi +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) +XS-Python-Version: 2.5, 2.6 +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.38-dbg +Architecture: any +Section: debug +Priority: extra +Depends: ${shlibs:Depends} +Conflicts: libboost-dbg (<< 1.35.0), libboost1.35-dbg, libboost1.36-dbg, libboost1.37-dbg +Suggests: libboost1.38-dev (= ${binary:Version}) +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.38-dev +Architecture: any +Section: libdevel +Depends: ${shlibs:Depends}, libstdc++-dev +Recommends: libboost1.38-doc, libboost-date-time1.38-dev, libboost-filesystem1.38-dev, libboost-graph1.38-dev, libboost-iostreams1.38-dev, libboost-math1.38-dev, libboost-program-options1.38-dev, libboost-python1.38-dev, libboost-regex1.38-dev, libboost-serialization1.38-dev, libboost-signals1.38-dev, libboost-system1.38-dev, libboost-test1.38-dev, libboost-thread1.38-dev, libboost-wave1.38-dev +Conflicts: libboost-dev (<< 1.35.0), bcp, libboost1.35-dev, libboost1.36-dev, libboost1.37-dev +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 tool bcp. + . + For the following subprojects separate packages exist: date-time, + filesystem, graph, iostreams, math, program_options, python, + regex, serialization, signals, system, test, thread, and wave. + +Package: libboost1.38-doc +Homepage: http://www.boost.org/libs/ +Architecture: all +Section: doc +Suggests: libboost1.38-dev (>= ${source:Version}) +Conflicts: libboost-doc (<< 1.35.0), libboost1.35-doc, libboost1.36-doc, libboost1.37-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.38-dev package in HTML format. + Some pages point to header files provided in libboost1.38-dev package, + so it is suggested to install the latter as well. + +Package: libboost-date-time1.38.0 +Homepage: http://www.boost.org/libs/date_time/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/date_time/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-date-time1.38.0 (= ${binary:Version}), libboost-serialization1.38-dev (= ${binary:Version}) +Conflicts: libboost-date-time-dev (<< 1.35.0), libboost-date-time1.36-dev, libboost-date-time1.37-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.38.0 +Homepage: http://boost.org/libs/filesystem/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://boost.org/libs/filesystem/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-filesystem1.38.0 (= ${binary:Version}), libboost-system1.38-dev (= ${binary:Version}) +Conflicts: libboost-filesystem-dev (<< 1.35.0), libboost-filesystem1.35-dev, libboost-filesystem1.36-dev, libboost-filesystem1.37-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.38.0 +Homepage: http://www.boost.org/libs/graph/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/graph/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-serialization1.38-dev (= ${binary:Version}), libboost-test1.38-dev (= ${binary:Version}) +Recommends: libboost-graph1.38.0 (= ${binary:Version}) +Conflicts: libboost-graph-dev (<< 1.35.0), libboost-graph1.35-dev, libboost-graph1.36-dev, libboost-graph1.37-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-iostreams1.38.0 +Homepage: http://www.boost.org/libs/iostreams/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/iostreams/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-regex1.38-dev (= ${binary:Version}), libboost-iostreams1.38.0 (= ${binary:Version}) +Conflicts: libboost-iostreams-dev (<< 1.35.0), libboost-iostreams1.35-dev, libboost-iostreams1.36-dev, libboost-iostreams1.37-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.38.0 +Homepage: http://www.boost.org/libs/math/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/math/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-math1.38.0 (= ${binary:Version}) +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-program-options1.38.0 +Homepage: http://www.boost.org/libs/program_options/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/program_options/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-program-options1.38.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 +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.38.0 +Homepage: http://www.boost.org/libs/python/ +Architecture: any +Section: python +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.38-dev +Homepage: http://www.boost.org/libs/python/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-python1.38.0 (= ${binary:Version}), python-dev, ${python:Depends}, python (>= 2.5) | python-celementtree | python-elementtree, gccxml +Suggests: libboost1.38-doc +Conflicts: libboost-python-dev (<< 1.35.0), pyste, libboost-python1.35-dev, libboost-python1.36-dev, libboost-python1.37-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.38.0 +Homepage: http://www.boost.org/libs/regex/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/regex/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-regex1.38.0 (= ${binary:Version}), libicu-dev +Conflicts: libboost-regex-dev (<< 1.35.0), libboost-regex1.35-dev, libboost-regex1.36-dev, libboost-regex1.37-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.38.0 +Homepage: http://www.boost.org/libs/serialization/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/serialization/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-serialization1.38.0 (= ${binary:Version}) +Conflicts: libboost-serialization-dev (<< 1.35.0), libboost-serialization1.35-dev, libboost-serialization1.36-dev, libboost-serialization1.37-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.38.0 +Homepage: http://www.boost.org/libs/signals/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/signals/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-signals1.38.0 (= ${binary:Version}) +Conflicts: libboost-signals-dev (<< 1.35.0), libboost-signals1.35-dev, libboost-signals1.36-dev, libboost-signals1.37-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.38.0 +Homepage: http://www.boost.org/libs/system/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/system/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-system1.38.0 (= ${binary:Version}) +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.38.0 +Homepage: http://www.boost.org/libs/test/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/test/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-test1.38.0 (= ${binary:Version}) +Conflicts: libboost-test-dev (<< 1.35.0), libboost-test1.35-dev, libboost-test1.36-dev, libboost-test1.37-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.38.0 +Homepage: http://www.boost.org/libs/thread/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/thread/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-date-time1.38-dev (= ${binary:Version}), libboost-thread1.38.0 (= ${binary:Version}) +Conflicts: libboost-thread-dev (<< 1.35.0), libboost-thread1.35-dev, libboost-thread1.36-dev, libboost-thread1.37-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.38.0 +Homepage: http://www.boost.org/libs/wave/ +Architecture: any +Section: libs +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.38-dev +Homepage: http://www.boost.org/libs/wave/ +Architecture: any +Section: libdevel +Depends: libboost1.38-dev (= ${binary:Version}), libboost-serialization1.38-dev (= ${binary:Version}), libboost-wave1.38.0 (= ${binary:Version}), libboost-filesystem1.38-dev (= ${binary:Version}) +Conflicts: libboost-wave-dev (<< 1.35.0), libboost-wave1.35-dev, libboost-wave1.36-dev, libboost-wave1.37-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.38-1.38.0.orig/debian/libboost-python-dev.prerm.in +++ boost1.38-1.38.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.38-1.38.0.orig/debian/changelog +++ boost1.38-1.38.0/debian/changelog @@ -0,0 +1,1348 @@ +boost1.38 (1.38.0-6jaunty6~ppa) jaunty; urgency=high + + * Upload to Launchpad's PPA + + -- Hossein Ansari Tue, 19 Jan 2010 11:26:11 +0330 + +boost1.38 (1.38.0-6ubuntu6) karmic; urgency=low + + * Rebuild with updated toolchain for armel. + + -- Matthias Klose Thu, 08 Oct 2009 11:49:46 +0200 + +boost1.38 (1.38.0-6ubuntu5) karmic; urgency=low + + * Rebuild with updated toolchain for armel. + + -- Matthias Klose Fri, 02 Oct 2009 16:02:00 +0200 + +boost1.38 (1.38.0-6ubuntu4) karmic; urgency=low + + * Ensure patches apply + + -- Jonathan Riddell Wed, 19 Aug 2009 01:09:29 +0100 + +boost1.38 (1.38.0-6ubuntu3) karmic; urgency=low + + * Add patched needed for PySide + - patches/generic_call_operator_support.patch: New. Add generic call + operator support (Boost SVN r47846). + - patches/enum_with_duplicated_values.patch: New. Allow duplicate enum + values (Boost SVN r53660). + - patches/boost_python_unsigned_converter_fix.patch: New. Fix bug reported + in Boost ticket #3189. + + -- Jonathan Riddell Wed, 19 Aug 2009 00:15:05 +0100 + +boost1.38 (1.38.0-6ubuntu2) karmic; urgency=low + + * Drop libboost-mpi from the package: nothing uses this, and we don't want + to pull all of the mpi packages into main. + + -- Steve Langasek Tue, 09 Jun 2009 17:10:12 -0700 + +boost1.38 (1.38.0-6ubuntu1) karmic; urgency=low + + * Update for Karmic Python versions (2.5/2.6 instead of 2.4/2.5) + - debian/control: Update XS-Python-Version + - debian/rules: Update python version rules + - debian/rtupdate: Update for Python 2.6 + * Extend debian/patches/sp_counted_base.patch to cover Sparc as well + - Carried forward from Ubuntu boost1.35 package + + -- Scott Kitterman Wed, 20 May 2009 01:24:41 -0400 + +boost1.38 (1.38.0-6) unstable; urgency=low + + * control: Add version (<< 1.35.0) to conflicts for -doc and -dbg + packages. + + -- Steve M. Robbins Sun, 03 May 2009 00:53:13 -0500 + +boost1.38 (1.38.0-5) unstable; urgency=low + + * rtupdate: Handle versioned libboostX.Y-dbg.rtupdate properly. Closes: + #525376. + + -- Steve M. Robbins Fri, 24 Apr 2009 22:14:11 -0500 + +boost1.38 (1.38.0-4) unstable; urgency=low + + * control (libboost1.38-dev): weaken dependency on libboost-math1.38-dev + and libboost-serialization1.38-dev from Depends to Recommends (Closes: + #524612). Add version (<< 1.35.0) to conflicts for -dev packages to + conflict with boost version 1.34.1 but allow the packages generated by + the upcoming boost-defaults source package. Ensure first line of long + description is a full sentence (Closes: #524034). + + -- Steve M. Robbins Thu, 23 Apr 2009 01:51:34 -0500 + +boost1.38 (1.38.0-3) unstable; urgency=low + + * patches/jam-wall-clean.patch: Fix printf formatting in + tools/jam/src/hash.c and tools/jam/src/hcache.c. + + -- Steve M. Robbins Sat, 04 Apr 2009 00:41:36 -0500 + +boost1.38 (1.38.0-2) unstable; urgency=low + + * Merge changes from 1.37.0-7 and 1.37.0-8: + - rtupdate: Do not die if called for an unknown python version, just + remove existing symlinks. + - control: Package -dbg is now in section debug. + - README.Debian: Add note about Boost.Test main() function. + + * copyright: Update. + + * licensecheck.diff: Remove. Licensecheck detects the Boost license as + of devscripts 2.10.46. + + -- Steve M. Robbins Mon, 30 Mar 2009 21:53:13 -0500 + +boost1.38 (1.38.0-1) unstable; urgency=low + + * New upstream. + - update control appropriately. + + * patches/math-c99.patch: + * patches/jam-hardening.patch: + * patches/avoid-PATH_MAX.patch: + * patches/suppress-compiler-warnings.patch: + * patches/gcc43-date_time.patch: + * patches/gcc43-path_name_check.patch: + * patches/system-error-code.patch: Removed. Applied upstream. + + * patches/jam-wall-clean.patch: Updated; partially applied upstream. + * patches/kfreebsd-jam.patch: Refreshed. + + * patches/boost_python_translate_exception.patch: New. From upstream + ticket 2582. + + * patches/series: Modified to account for removed patches. + + -- Steve M. Robbins Sun, 22 Feb 2009 00:21:26 -0600 + +boost1.37 (1.37.0-5) unstable; urgency=low + + * README.Debian: + * libboost-python-dev.README.Debian: Revise, removing all the verbiage + about single-threaded versions and decorated library names which was + not relevant as of 1.37.0-1. + + * control: libboost1.37-dev depends on libboost-math1.37-dev. Closes: + #515079. Update list of separate packages in description and + Recommends line for libboost1.37-dev. + + -- Steve M. Robbins Mon, 16 Feb 2009 15:55:23 -0600 + +boost1.37 (1.37.0-4) unstable; urgency=low + + * patches/function-template.patch: New. Fix misplaced #ifdef (thanks to + Caolan McNamara for the patch at + https://bugzilla.redhat.com/show_bug.cgi?id=477131). Closes: #511073. + + * control: + * rules: New packages libboost-mpi1.37.0 and libboost-mpi1.37-dev. + Closes: #494832, #490242. Thanks to Tilman Koschnick and Rutger ter + Borg for their patches. New -dev package conflicts and replaces + libboost1.37-dev, since the headers were moved from the latter to the + former. + * patches/mpi-python.patch: The python bindings for Boost.MPI don't + build; disable until I understand what's going on. + + * rules: Usage of "dh_clean -k" is deprecated in debhelper 7; replace + with "dh_prep". + + -- Steve M. Robbins Sat, 10 Jan 2009 16:53:03 -0600 + +boost1.37 (1.37.0-3) unstable; urgency=low + + * patches/series: Add add-disable-long-double.patch to the series. + * rules: Suppress building long-double math libraries (math_c99l & + math_tr1l) on hppa, arm, armel, mips, and mipsel. Closes: #508962. + + -- Steve M. Robbins Thu, 18 Dec 2008 21:11:51 -0600 + +boost1.37 (1.37.0-2) unstable; urgency=low + + * control: Add Bcs-Browser and Vcs-Svn information. + + * copyright: Update with the help of licensecheck, modified to detect + the Boost Software License; c.f. debian/licensecheck.diff. + + * patches/atomic_count_gcc.patch: New. GCC version >= 4.2 has moved + to . + + * patches/jam-hardening.patch: New. Fix warnings generated by hardening + options, -D_FORTIFY_SOURCE=2 and -Wformat-security. Thanks to Kees + Cook for the patch. Closes: #505734. + + * patches/atomic_count.patch: New. Exclude armel, m68k, and sparc from + atomic_count_sync case since they do not have __sync functions + (http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html). + + * patches/math-c99.patch: New. Fix detection of long-double math + functions such as log1pl() and expm1l(). Upstream changeset 50055. + + * patches/kfreebsd-jam.patch: New. Include for all GLIBC + systems; fixes a build failure for kFreeBSD. Thanks to Petr Salinger + for the patch. Closes: #506736. + + * patches/system-error-code.patch: New. Restore function + get_posix_category(). Closes: #503917. Thanks to Deng Xiyue for + researching the fix. + + * patches/sp_counted_base.patch: New. Add armel, m68k, and sparc to + list of architectures that cannot use sp_counted_base_sync (they do + not have __sync functions). + * rules: The above patch means these architectures (and arm, which + is already accounted for in sp_counted_base.hpp) fall through to + sp_counted_base_spin, so we no longer need to specify + BOOST_SP_USE_PTHREADS. + + -- Steve M. Robbins Sun, 14 Dec 2008 16:52:08 -0600 + +boost1.37 (1.37.0-1) unstable; urgency=low + + * New upstream. Closes: #504475. + + * patches/test-child-exit-t1723.patch: + * patches/kfreebsd-poll-symbols.patch: + * patches/gcc43-spirit-1617.patch: Remove, applied upstream. + + * check-interdep.sh: + * documention-files: + * example-files: Update for new version. + + * control: + * rules: Update version variables for 1.37. Do not build + single-threaded libraries. Do not create symlinks that are decorated + with toolset name (i.e. "gcc43"). + + * rtupdate: Test for link target existence, since we no longer build + single-threaded libraries. + + * debian/rules: Include debug symbols in libboost-dbg. Thanks for Tim + Ansell for the patch. Closes: #495812. + + * control: Increase build-dep to debhelper >= 7. + * compat: Set to level 7. Level 4 or better required for debug + symbols fix. + + -- Steve M. Robbins Sun, 09 Nov 2008 15:46:50 -0600 + +boost1.36 (1.36.0-2) unstable; urgency=low + + * debian/patches/endian.patch: New. Include unconditionally + on all Debian systems. + + -- Steve M. Robbins Mon, 27 Oct 2008 00:49:42 -0500 + +boost1.36 (1.36.0-1) unstable; urgency=low + + * New upstream version. Closes: #495179. + - patches/serialisation-utility-include.patch: + - patches/serialization-intrinsic64.patch: + - patches/sp_counted_base.patch: Remove. Applied upstream. + + * patches/gcc43-date_time.patch: + * patches/gcc43-spirit-1617.patch: + * patches/gcc43-path_name_check.patch: New. Fixes for GCC 4.3 issues. + + * patches/gcc-4.3.patch: Remove. Most of this was applied upstream; + remainder is now in gcc43-date_time.patch. + + * control: + * rules: Add packages for Boost.Math. + + * copyright: Convert to UTF-8. + + -- Steve M. Robbins Sun, 28 Sep 2008 00:26:01 -0500 + +boost1.35 (1.35.0-8) experimental; urgency=low + + * debian/patches/jam-wall-clean.patch: Additional changes to expand.c, + hash.c to remove warnings from amd64 & s390. + + * libboost-python1.35-dev: Add preferred alternative dependency + "python (>= 2.5)", since elementtree is included in Python 2.5 and + later. Fix from Martin Pitt . Closes: #494791. + + -- Steve M. Robbins Wed, 13 Aug 2008 03:36:02 -0500 + +boost1.35 (1.35.0-7) experimental; urgency=low + + * debian/patches/avoid-PATH_MAX.patch: Define symbol _GNU_SOURCE in + order that get_current_dir_name() is declared. Should fix the build + failure #494346. + + * debian/patches/jam-wall-clean.patch: Patch jam sources to build + cleanly with -Wall. + * debian/rules: Build with -Wall -Werror. + + -- Steve M. Robbins Sat, 09 Aug 2008 09:01:23 -0500 + +boost1.35 (1.35.0-6) experimental; urgency=low + + [ Steve M. Robbins ] + + * Uploading to experimental to avoid messing with the Etch freeze. + + * debian/control: Set Standards-Version to 3.8.0; no changes required. + + * debian/rules: Set gcc_version to gcc43 for the upstream-compatible + symlinks. + + * debian/patches/gcc-4.3.patch: Qualify typedef in + boost/gil/bit_aligned_pixel_reference.hpp. Closes: #485512. + + * debian/patches/serialisation-utility-include.patch: New. Apply + suggested patch, from upstream + http://svn.boost.org/trac/boost/ticket/1822. Closes: #491225. + + * debian/patches/sp_counted_base.patch: New. Avoid using + sp_counted_base_sync.hpp on ARM and HPPA, as those architectures do + not support atomic builtin __sync_fetch_and_add. Closes: #485434. + + * debian/patches/kfreebsd-poll-symbols.patch: New. Work around kFreeBSD + defining POLL_ERR and POLL_HUP as the same value. Closes: #492786. + + * debian/patches/avoid-PATH_MAX.patch: New. Use get_current_dir_name() + to avoid static string of size PATH_MAX as that symbol is unavailable + in hurd-i386. Closes: #487343. + + * debian/patches/test-child-exit-t1723.patch: New. Ignore child process + if return status is zero (normal); fix for Boost ticket 1723. + + * debian/patches/python2.5-elementtree.patch: New. Use cElementTree + from xml.etree, if available (python 2.5). Closes: #489022. + + [ Domenico Andreoli ] + + * debian/rules: perform parallel builds as per $DEB_BUILD_OPTIONS + + -- Steve M. Robbins Sun, 03 Aug 2008 10:33:40 -0500 + +boost1.35 (1.35.0-5) unstable; urgency=low + + * debian/rules: Build using -DBOOST_SP_USE_PTHREADS for armel. + + -- Steve M. Robbins Fri, 23 May 2008 00:32:17 -0500 + +boost1.35 (1.35.0-4) unstable; urgency=low + + * debian/rules: Fix syntax error creating user-config.jam; the final + semicolon needs a space before it. Closes: #481971. + + -- Steve M. Robbins Mon, 19 May 2008 19:55:46 -0500 + +boost1.35 (1.35.0-3) unstable; urgency=low + + * debian/patches/serialization-intrinsic64.patch: New. Patch from + upstream to fix build problem with GCC 4.3 on 64-bit systems. + + * debian/rules: The gcc module of bjam no longer honours , so + use -D_REENTRANT in user-config.jam. + + * debian/rules: Build using -DBOOST_SP_USE_PTHREADS for: hppa, sparc, + and arm. + + -- Steve M. Robbins Mon, 19 May 2008 01:26:21 -0500 + +boost1.35 (1.35.0-2) unstable; urgency=low + + * debian/control: Add missing dependencies. Closes: #480948. + date_time depends on serialization + filesystem depends on system + graph depends on serialization test + iostreams depends on regex + regex depends on thread + thread depends on date_time + wave depends on filesystem serialization + multi_index [libboost-dev] depends on serialization + + -- Steve M. Robbins Sat, 17 May 2008 03:50:02 -0500 + +boost1.35 (1.35.0-1) unstable; urgency=low + + * New upstream version. Closes: #473752. + debian/documentation-files: + debian/patches: Adjust to new version. + debian/control: Remove depenency of libboost-dev on + libboost-serialization-dev as noted in (1.34.1-7). Closes: #478782. + + * debian/control: Substitute 1.34.1 --> 1.35.0 on all library package + names. Change source to boost1.35 so that packages will coexist in + archive with 1.34.1 versions. Add version string to all packages + including -dev and -doc. Add conflicts with previous packages. Add + packages libboost-system1.35.0 and libboost-system1.35-dev. + + * debian/patches/library-naming.patch: New. Remove toolset and boost + version from library names. + * debian/rtupdate: Remove logic for links with toolset name. + + * debian/rules: Adjust SOVERSION, SHLIBS_VERSION, and boost_version to + new version. Remove DEBIAN_SUFFIX. + Add system to boost_libs. + Adjust link functions: + - Create compatibility links with toolset and boost version, rather + than simplified name links. + - Don't create gcc41 compatibility links. + - Don't create Boost.Python compatibility links. + Add "link=shared,static" to all jam invocations, including "jam install". + Don't need to copy more/css_0 to -doc package. + Add rules for new system library + + * debian/control: + * debian/rules: Don't build with g++-4.2 explicitly. Closes: #463288. + + * debian/libboost-doc.doc-base: Change Section from obsolete + Apps/Programming to Programming/C++. Replace leading spaces of + Abstract continuation lines by a single space. The latter means + "display verbatim", which is not desired. + + * debian/control: Build-depend on debhelper (>= 6.0.7) to ensure + dh_lintian available. + * debian/rules: Use dh_lintian to install lintian-overrides. Create all + lintian-overrides files in debian/rules. + * debian/libboost-dev.lintian-overrides: + * debian/libboost-dbg.lintian-overrides: + * debian/libboost-python-dev.lintian-overrides: + * debian/libboost-doc.lintian-overrides: Delete. + + * debian/control: Remove package bcp. + * debian/rules: Package /usr/bin/bcp and its manpage in libboost1.35-dev. + + * debian/control: Remove package pyste. + * debian/rules: Package /usr/bin/pyste and its manpage in + libboost-python1.35-dev. + + -- Steve M. Robbins Wed, 07 May 2008 02:38:44 -0500 + +boost (1.34.1-11) unstable; urgency=low + + * debian/control: Add python-dev to libboost-python-dev depends. + Closes: #473973. + + -- Steve M. Robbins Fri, 04 Apr 2008 11:01:05 -0500 + +boost (1.34.1-10) unstable; urgency=low + + * debian/libboost-python-dev.postinst: + * debian/libboost-python-dbg.postinst: Change from "which pyversions && + ..." (which fails if pyversions not available) to "if which pyversions + ...". Closes: #473607. + + * debian/patches/date_time_date_formatting_hpp: Update patch to also + format fractional seconds with classic locale (thanks, Jean Pierre + LeJacq). Also reported upstream as ticket/1726. Closes: #473177. + + -- Steve M. Robbins Mon, 31 Mar 2008 18:44:59 -0500 + +boost (1.34.1-9) unstable; urgency=low + + * debian/control: + * debian/rules: Set up to use Quilt for maintaining patches. + + * boost/numeric/ublas/matrix.hpp: + * boost/numeric/ublas/matrix_sparse.hpp: Revert. These originated in + the merge of 1.33.1 (change 13900) and appear to be erroneous. + + * Reverted all other diffs outside of debian/ and created the following + set of quilt patches: + - debian/patches/regex-vulnerability.patch + - debian/patches/suppress-compiler-warnings.patch + - debian/patches/function-template-thread-safety.patch + - debian/patches/bjam-no-strict-aliasing.patch + - debian/patches/gcc-4.3.patch + + * Remove obsolete patch files: + - debian/patches/03-st_mt.patch + - debian/patches/02-is_incrementable1331.patch + - debian/patches/01-ublas1331.patch + - debian/patches/05_regex_fixes.patch + - debian/patches/04-ublas_warnings.patch + + * boost/date_time/date_facet.hpp: Qualify special_values_parser<>, to + build with GCC 4.3; patch added to gcc-4.3.patch (thanks, Anibal + Avelar). Closes: #468061. + + * boost/spirit/phoenix/operators.hpp: Include , to build with + GCC 4.3; patch added to gcc-4.3.patch (thanks, Dominic Hargreaves). + Closes: #470080. + + * boost/date_time/date_formatting.hpp: Format year with classic locale + to force correct formatting; new patch date_time_date_formatting_hpp + (thanks, Jean Pierre LeJacq). Also reported upstream as ticket/1674. + Closes: #469771. + + * debian/libboost-doc.doc-base: Change document ID from "Boost" to + "boost". Apparently dh_installdocs got picky about no upper-case + letters in doc IDs. Closes: #471284. + + * debian/patches/gcc-4.3.patch: Include relevant patches from Boost + ticket tracker, issues: 1570, 1615, and 1617. + + * debian/control: Update to standards version 2.7.3 (no changes). + + * debian/pyste.1: New. Manual page for pyste. + * debian/rules: Install pyste man page. Bump SHLIBS_VERSION to + 1.34.1-8. Closes: #472571. + + * debian/bcp.1: Replace initial ' by .\" to avoid warnings from "man". + + -- Steve M. Robbins Mon, 24 Mar 2008 23:09:57 -0500 + +boost (1.34.1-8) unstable; urgency=low + + * debian/rules: Replace all use of $(PWD) and `pwd` by $(CURDIR); clears + up lintian warning debian-rules-uses-pwd. + + * debian/control: Move the homepage lines from the extended descriptions + to a proper header; clears up lintian warning + description-contains-homepage. + + * tools/jam/src/build.jam: Build using -fno-strict-aliasing, to avoid a + segfault. Patch obtained from upstream changeset 41036; c.f. bug + #367825 and boost ticket 977 (http://svn.boost.org/trac/boost/ticket/977). + * debian/rules: Do not build bjam with CC=gcc-4.1. + * debian/control: Do not build-depend on gcc-4.1. Closes: #463287. + + * debian/control: Change Build-Depends from "python-dev | + python-all-dev, python2.4-dev" to simply "python-all-dev"; this brings + in all current Python -dev packages. Update python-support required + version from 0.3 to 0.6, following README of current python-support + package. Remove "python2.4-dev" from dependency of + libboost-python-dev; add python2.4-dev and python2.5-dev to its + Suggests line since users of this package may need any of the + currently-supported Python development packages. + * debian/rules: Introduce a suffix on library names, intended to handle + the -py24 and -py25 suffices added using --buildid. This requires + some new functions, and updates to existing functions: mk_base_name, + mk_full_name, mk_compat_name, mk_xxx_files, mk_files, and + mk_debhelper_files. Add lines for Python 2.4 and 2.5 to + user-config.jam file and build each python version explicitly. Factor + code to remove generated debhelper files from clean to new rule + clean-debhelper, called from both clean and install rules. Install + debian/rtupdate files, ensure the -py24 and -py25 libraries are + installed and remove those without suffices. Remove unnecessary use + of dh_python. Closes: #445381, #425881, #466820. + * debian/rtupdate: New. Updates or removes symlinks for link libraries, + depending on the default Python runtime version. + * debian/libboost-dbg.postinst: New. Call rtupdate to create symlinks. + * debian/libboost-python-dev.postinst: New. Call rtupdate to create symlinks. + * debian/libboost-dbg.prerm: New. Call rtupdate to remove symlinks. + * debian/libboost-python-dev.prerm: New. Call rtupdate to remove symlinks. + + * debian/README.Debian: + * debian/libboost-python-dev.README.Debian: + * debian/Notes: Add notes about multiple Python runtime support, remove + some obsolete notes. + + -- Steve M. Robbins Sat, 22 Mar 2008 14:37:38 -0500 + +boost (1.34.1-7) unstable; urgency=low + + * debian/control (libboost-dev): Move libboost-serialization-dev from + Recommends to Depends since ptr_vector needs it. Closes: 457654, + 465720. Note that the next version of the Pointer Container Library + uses a non-intrusive implementation of serialization, decoupling the + libraries [http://thread.gmane.org/gmane.comp.lib.boost.devel/169668]. + This change can be reverted when the new upstream is packaged. + + * debian/documentation-files: Updated as per procedure in debian/Notes. + Closes: #338106. + * debian/rules (libboost-doc): Also copy in all doc directories. + + -- Steve M. Robbins Mon, 18 Feb 2008 13:36:30 -0600 + +boost (1.34.1-6) unstable; urgency=low + + [Fixes for GCC 4.3] + * boost/regex/v4/cpp_regex_traits.hpp: + * boost/test/test_tools.hpp: Add #include to pick up + definition of CHAR_BIT (thanks, Jiri Palecek). Closes: #444359. + * boost/python/detail/def_helper.hpp: Change keywords<0> to + detail::keywords<0>, avoiding a "changes meaning" error. Patch from + upstream SVN. + * Verified that tagpy builds. Closes: #444359. + * Verified that twinkle builds (after fixing #465187). Closes: #454815. + * Verified that kdeedu builds (had to omit uninstallable libfacile-ocaml-dev + build-dep). Closes: #463464. + + -- Steve M. Robbins Mon, 11 Feb 2008 01:40:05 -0600 + +boost (1.34.1-5) unstable; urgency=medium + + [ Domenico Andreoli ] + * Re-synchronized with friends from Ubuntu (thanks Jamie Strandboge). + - got fixes for CVE-2008-0171 and CVE-2008-0172. Closes: #461236. + * debian/patches/05_regex_fixes.patch: fix for + basic_regex_parser() in boost/regex/v4/basic_regex_parser.hpp to return + error on invalid repetition of next state + * References + CVE-2008-0171 + CVE-2008-0172 + http://svn.boost.org/trac/boost/changeset/42674 + http://svn.boost.org/trac/boost/changeset/42745 + + [ Steve Robbins ] + * boost/function/function_base.hpp: + * boost/function/function_template.hpp: Replace with SVN head version to + fix boost http://svn.boost.org/trac/boost/ticket/1260. + Closes: #458743. + + -- Steve M. Robbins Thu, 07 Feb 2008 23:16:01 -0600 + +boost (1.34.1-4) unstable; urgency=low + + * Merged Steve Langasek's -2.1 and -2.2 changes into + the experimental -3 version. + + -- Steve M. Robbins Sun, 23 Dec 2007 21:14:55 -0600 + +boost (1.34.1-2.2) unstable; urgency=low + + * Non-maintainer upload. + * Change libicu-dev dependency in addition to the build-dependency. + Closes: #456844. + * Add back build dependency on gcc-4.1, since bjam currently segfaults + with gcc-4.2; this is superseded already in 1.34.1-3 in experimental. + Closes: #456915. + + -- Steve Langasek Wed, 19 Dec 2007 00:58:39 -0800 + +boost (1.34.1-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Build-depend on libicu-dev instead of libicu36-dev for the icu library + transition. Closes: #454605. + * Bump the Build-Depends from g++-4.1 to g++-4.2, and add + backwards-compatibility "-gcc41" symlinks for all libraries to avoid + gratuitous ABI breakage for the rebuild since the gcc version + doesn't change the ABI, contrary to upstream assertion. Bump the + shlibs to match. + * Add shlibs to libboost-dbg package, for compatibility with new + dpkg-shlibdeps behavior. + + -- Steve Langasek Sun, 16 Dec 2007 13:59:29 -0800 + +boost (1.34.1-3) experimental; urgency=low + + * ABI change: switched back to gcc 4.2 + * bjam is built using gcc 4.1 (closes: #367825). + * libboost-dev now recommends all the other libboost-*-dev packages + (closes: #443160). + + -- Domenico Andreoli Wed, 19 Sep 2007 03:12:48 +0200 + +boost (1.34.1-2) unstable; urgency=low + + [ Steve Robbins ] + * Build with gcc 4.1 and python 2.4 (closes: #426871). + + [ Domenico Andreoli ] + * Fixed gcc 4.1 vs. gcc 4.2 confusion on hppa (closes: #436446). + * Debug libraries and their symlinks are back in libboost-dbg. + * bjam is built using gcc 4.1 also in the case it is not the default + gcc version. + + -- Steve M. Robbins Tue, 14 Aug 2007 22:52:45 -0500 + +boost (1.34.1-1) experimental; urgency=low + + * New upstream release (closes: #436091). + * Moved date_time.hpp to libboost-date-time-dev (closes: #434370). + * Removed libboost-dbg package. Debug libraries are now installed in + their respective libboost-* packages. + * Reworked libraries installation to binary packages. + * README.Debian now explains how programs should link to the Boost + libraries both the portable and the Debian-specific way. + Closes: #429533, #424038, #425264, #428419, #431502, #425992. + + -- Domenico Andreoli Sun, 05 Aug 2007 15:32:38 +0200 + +boost (1.34.1~rc1-1) experimental; urgency=low + + * New upstream release candidate. + * Drop ${Source-Version} substvar from rules. + * Moved boost/filesystem.hpp to libboost-filesystem-dev (closes: #428179). + * Build with g++ 4.2 (g++ 4.1 is still used for bjam). + * Updated README to reflect the new naming scheme for libraries linking. + + -- Domenico Andreoli Sun, 24 Jun 2007 23:52:28 +0200 + +boost (1.34.0-1) unstable; urgency=low + + * New upstream release. + * libboost-doc is properly created and filled, also on hppa (closes: #406883). + + -- Domenico Andreoli Mon, 14 May 2007 00:06:49 +0200 + +boost (1.34.0~rc2-2) experimental; urgency=low + + * Re-applied workaround for toolchain bug on hppa (closes: #416496). + * Partially synchronized with Ubuntu: + - removed "python |" as alternative build dependency + - libboost-python-dev now depends on python2.5-dev + + -- Domenico Andreoli Thu, 10 May 2007 23:22:20 +0200 + +boost (1.34.0~rc2-1) experimental; urgency=low + + * Removed debian-specific virtual destructors of + polymorphic_iarchive and polymorphic_oarchive. see + http://lists.boost.org/Archives/boost/2006/09/110979.php. + * Bumped shlibs to (>= 1.34.0~rc2-1), ABI might be changed since the + first introduction of 1.34.0 snapshot from CVS almost a year ago. + + -- Domenico Andreoli Thu, 10 May 2007 12:33:32 +0200 + +boost (1.34.0~beta1-2) experimental; urgency=low + + * libboost-serialization-dev now depends on libboost-serialization1.34.0, + libboost-wave-dev on libboost-wave1.34.0. + * Build depends on g++-4.1 (>= 4.1.2). + + -- Domenico Andreoli Mon, 30 Apr 2007 17:26:55 +0200 + +boost (1.34.0~beta1-1) experimental; urgency=low + + * New upstream beta release. + * Boost.Python is built using python 2.5. + + -- Domenico Andreoli Sat, 28 Apr 2007 01:08:50 +0200 + +boost (1.33.1+1.34.0-cvs20070326-1) experimental; urgency=low + + * New upstream snapshot version. + * Added missing shared library packages of Boost.Serialization and + Boost.Wave. Closes: #410157. + * No unqualified .so symlinks are now provided, only -st.so/-mt.so + are available. Closes: #356705. + + -- Domenico Andreoli Tue, 27 Mar 2007 13:50:30 +0200 + +boost (1.33.1+1.34.0-cvs20070221-1) experimental; urgency=low + + * New upstream snapshot version. + * Improved the build process. + * Now both st/mt variants are installed as well as their new symlinks + to ease the linking. No, we still have not pkg-config support. + + -- Domenico Andreoli Fri, 23 Mar 2007 13:47:15 +0100 + +boost (1.33.1+1.34.0-cvs20060531-1) experimental; urgency=low + + * New upstream snapshot version. + * CSS file for HTML documentation is now correctly installed. + Closes: #358986. + * Standards-Version is now set to 3.7.2. + + -- Domenico Andreoli Wed, 31 May 2006 16:09:49 +0200 + +boost (1.33.1-10) unstable; urgency=medium + + * boost/detail/sp_counted_base_gcc_ia64.hpp, + boost/detail/sp_counted_base_gcc_ppc.hpp: added missing constraints + on inline assembly. Closes: #405599. + Patch courtesy of Aaron M. Ucko , from upstream CVS. + + -- Domenico Andreoli Fri, 5 Jan 2007 10:23:10 +0100 + +boost (1.33.1-9ubuntu2) feisty; urgency=low + + * Remove "python |" as alternative build dependency. + + -- Matthias Klose Sun, 14 Jan 2007 17:18:44 +0000 + +boost (1.33.1-9ubuntu1) feisty; urgency=low + + * Build using python2.5. + * Fix build failure on 64bit archs with python2.5. + + -- Matthias Klose Sun, 14 Jan 2007 14:17:42 +0000 + +boost (1.33.1-9) unstable; urgency=low + + * boost/property_map_iterator.hpp: added missing namespace. Closes: #397654. + + -- Domenico Andreoli Tue, 21 Nov 2006 12:21:42 +0100 + +boost (1.33.1-8) unstable; urgency=low + + * Synchronized with Ubuntu. + * libboost-regex-dev now depends on libicu36-dev. + + -- Domenico Andreoli Fri, 3 Nov 2006 23:54:34 +0100 + +boost (1.33.1-7ubuntu1) edgy; urgency=low + + * debian/patches/05-fix_signals.patch: + - patch from upsteam CVS, fixes Boost.Signals to work properly + across shared library boundaries with certain compiler options. + (Closes Ubuntu: #62202) + + -- Matti Lindell Mon, 25 Sep 2006 08:54:32 +0300 + +boost (1.33.1-7) unstable; urgency=low + + * Re-added build dependency on python2.4-dev. + + * Build dependency on libicu36-dev is now allowed and preferred + over libicu34-dev. + + -- Domenico Andreoli Sun, 17 Sep 2006 23:35:27 +0200 + +boost (1.33.1-6) unstable; urgency=low + + * Packaged Pyste. Closes: #189839. + + * Package libboost-dbg has now priority extra. + + -- Domenico Andreoli Fri, 8 Sep 2006 21:56:31 +0200 + +boost (1.33.1-5) unstable; urgency=low + + * CSS file for HTML documentation is now correctly installed. + Closes: #358986. + + * Added missing header in boost/bind.hpp. Closes: #376747. + + * Fixed some unused parameter warnings. Closes: #372800. + + * Fixed some typos in source code. Closes: #378016. + Patch courtesy of Roger Leigh. + + -- Domenico Andreoli Thu, 20 Jul 2006 12:44:28 +0200 + +boost (1.33.1-4) unstable; urgency=low + + * Graph library is built with -mlong-calls on hppa too. + + -- Domenico Andreoli Wed, 22 Mar 2006 14:21:05 +0100 + +boost (1.33.1-3) unstable; urgency=low + + * Fixed licensing of Graph library. Closes: #349209. + Patch from upstream CVS repository, courtesy of Doug Gregor. + * Fixed build process of Graph library. Closes: #326089. + * Shared library packages do not install the empty /usr/include/boost + directory any more. Closes: #344599. + * Added manpage for bcp. Closes: #348523. + * Static version of Thread library is also installed. Closes: #357986. + + -- Domenico Andreoli Thu, 16 Mar 2006 13:40:06 +0100 + +boost (1.33.1-2) unstable; urgency=low + + [ Christophe Prud'homme ] + * Bug fix: "libboost-wave-dev: Dependency on libboost-filesystem-dev + missing", thanks to Martin v . Löwis (Closes: #346367). + + [ Domenico Andreoli ] + * boost/graph/topological_sort.hpp: removed name of unused parameter + to prevent long compiler warning. Closes: #347519. + * Applied patch from upstream CVS to fix parsing of valid options + with a common root. Closes: #345714. + * libboost-python-dev now correctly depends on python2.4-dev. + + -- Domenico Andreoli Wed, 11 Jan 2006 11:11:42 +0100 + +boost (1.33.1-1) experimental; urgency=low + + * New upstream release. + + * debian/control, debian/rules: switched to python 2.4. + + * debian/control: removed build dependency on g++ 3.4. Closes: #342958. + + -- Domenico Andreoli Mon, 12 Dec 2005 17:44:36 +0100 + +boost (1.33.0-5) unstable; urgency=low + + * Re-uploaded with the right maintainer, the Debian Boost Team. + + -- Domenico Andreoli Mon, 21 Nov 2005 16:49:41 +0100 + +boost (1.33.0-4) unstable; urgency=low + + * debian/control, debian/rules: renamed DSO packages to '*c2a'. + Closes: #339154. + + -- Christophe Prud'homme Mon, 21 Nov 2005 07:05:58 +0100 + +boost (1.33.0-3) unstable; urgency=low + + * debian/documentation-files: regenerate. + + * Applied patch from 1.33.1 to unbreak ublas. + + * Applied patch from 1.33.1 to unbreak is_incrementable with g++ 4.0.2. + + * Applied patch to remove warnings when compiling ublas with -Wall, + patch sent upstream. + + * Single-threaded libraries are provided as well, thanks to Waba. + Closes: #335594. + + * hppa and m68k build with gcc 3.4. Closes: #319232, #334959. + + -- Domenico Andreoli Thu, 3 Nov 2005 13:11:05 +0100 + +boost (1.33.0-2) unstable; urgency=low + + * The Debian Boost Team now maintains the package. + + * Added packages for Boost.Iostreams and Boost.Wave libraries. + Closes: #324833. + + * Added package for bcp utility. Closes: #333530. + + * boost/tuple/detail/tuple_basic.hpp: removed name of unused parameter. + Closes: #327167. + + * debian/rules: enabled UNICODE support for Boost.Regex. Closes: #333703. + + -- Domenico Andreoli Tue, 18 Oct 2005 18:21:25 +0200 + +boost (1.33.0-1) unstable; urgency=low + + * New usptream version. Closes: #322674. + + * debian/rules: static library of program_options is now distributed. + Closes: #320973, #322269. + + * boost/graph/adjacency_list.hpp: fixed compiler warnings. + Closes: #322386. + + * debian/documentation-files: updated. Closes: #322579. + + * Fixed FTBFS on GNU/kFreeBSD. Closes: #320677. + + -- Domenico Andreoli Fri, 12 Aug 2005 12:37:35 +0200 + +boost (1.32.0+1.33.0-cvs20050727-1) unstable; urgency=low + + * Updated the snapshot version. Closes: #319966. + + * Fixed shlibs version. + + -- Domenico Andreoli Wed, 27 Jul 2005 23:06:27 +0200 + +boost (1.32.0+1.33.0-cvs20050720-3) unstable; urgency=low + + * Added build dependency on zlib1g-dev. + + -- Domenico Andreoli Thu, 21 Jul 2005 12:34:37 +0200 + +boost (1.32.0+1.33.0-cvs20050720-2) unstable; urgency=low + + * Added build dependency on libbz2-dev. + + -- Domenico Andreoli Thu, 21 Jul 2005 10:08:48 +0200 + +boost (1.32.0+1.33.0-cvs20050720-1) unstable; urgency=low + + * New upstream snapshot version. Closes: #318139, #318995, #306696. + - fixed invalid include files in test library. Closes: #296804. + - removed extraneous empty directory in package libboost-graph1.33.0. + Closes: #309361. + + * debian/control: libboost-graph1.33.0 suggests graphviz. Closes: #309363. + + * debian/control: libboost-graph-dev only recommends libboost-graph1.33.0. + Closes: #309360. + + * boost/archive/detail/interface_iarchive.hpp, + boost/archive/detail/interface_oarchive.hpp: fixed compiler warning. + Closes: #308291. + + -- Domenico Andreoli Wed, 20 Jul 2005 01:28:45 +0200 + +boost (1.32.0-6.1) unstable; urgency=medium + + * Non-maintainer upload. + * Medium-urgency upload for RC bugfix. + * Rebuild against g++-4.0 for the C++ ABI transition, adding "c2" to + the name of each of the library packages and conflicting with the + old versions. + + -- Steve Langasek Mon, 18 Jul 2005 19:10:24 -0700 + +boost (1.32.0-6) unstable; urgency=low + + * debian/control: libboost-serialization-dev now replaces libboost-dev + properly. + + -- Domenico Andreoli Thu, 7 Apr 2005 10:46:00 +0200 + +boost (1.32.0-5) unstable; urgency=low + + * debian/control: libboost-dev now suggests also + libboost-program-options-dev and libboost-serialization-dev. + + * debian/control, debian/rules: added package libboost-serialization-dev. + closes: #292596. + + -- Domenico Andreoli Wed, 30 Mar 2005 17:56:57 +0200 + +boost (1.32.0-4) unstable; urgency=low + + * debian/rules: symbolic link to HTML/boost documentation directory + is now properly installed. Closes: #290333. + + * boost/test/detail/wrap_stringstream.hpp: fixed workaround (from + upstream CVS). Closes: #300330. + + -- Domenico Andreoli Tue, 22 Mar 2005 16:44:31 +0100 + +boost (1.32.0-2) unstable; urgency=low + + * debian/rules: debug libraries are now really installed in package + libboost-dbg. + + -- Domenico Andreoli Mon, 10 Jan 2005 01:36:46 +0100 + +boost (1.32.0-1) experimental; urgency=low + + * New upstream version. Closes: #282871. + - boost/pool/detail/pool_construct.inc and + boost/pool/detail/pool_construct_simple.inc are correctly installed + by package libboost-dev. Closes: #284076. + + * debian/control, debian/rules: added package libboost-dbg. + Closes: #279883. + + * debian/control, debian/rules: added packages for Boost.Program_options. + + -- Domenico Andreoli Tue, 7 Dec 2004 15:22:49 +0100 + +boost (1.31.0-9) unstable; urgency=low + + * More things fixed for indirect_traits in boost/detail. + + -- Domenico Andreoli Thu, 11 Nov 2004 16:59:04 +0100 + +boost (1.31.0-8) unstable; urgency=low + + * Moved indirect_traits to boost/detail. Fixed things here and + there (from upstream CVS). Closes: #278889. + + * boost/numeric/ublas/banded.hpp: fixed gcc-3.4 compilation error. + Closes: #276652. + + * tools/regression/run_tests.sh: fix setting of BOOST_BUILD_PATH. + + * debian/control: flex is used instead of flex-old. + + -- Domenico Andreoli Thu, 11 Nov 2004 16:04:09 +0100 + +boost (1.31.0-7) unstable; urgency=medium + + * boost/spirit/core/assert.hpp: fixed typo in BOOST_SPIRIT_ASSERT + macro definition (from upstream CVS). Closes: #267991. + + * libs/graph/src/Makefile: uses -O3 instead of -O to work around + gcc-3.3 bug #248207 on amd64. Closes: #270156. + + * Added random_device.cpp as example file of libboost-dev package + and added a note in libboost-dev's README.Debian. Closes: #261719. + + -- Domenico Andreoli Thu, 9 Sep 2004 16:06:48 +0200 + +boost (1.31.0-6) unstable; urgency=low + + * debian/rules: removed package bjam as it is now built from a separate + source package, boost-jam. + + * boost/iterator/iterator_adaptor.hpp: removed the useless inclusion + of is_xxx.hpp (from upstream CVS). + + * debian/control: libboost-dev does not depend on libboost-python-dev + any more. + + * boost/date_time/posix_time/ptime.hpp: Add constructor from special_values + type; upstream bug fix + (http://lists.boost.org/MailArchives/boost-users/msg06801.php) + + -- Steve M. Robbins Sun, 25 Jul 2004 09:41:03 -0400 + +boost (1.31.0-5) unstable; urgency=low + + * libs/python/build/Jamfile: boost-python shared library is now linked + to libpython2.3. Closes: #243089. + + * boost/graph/isomorphism.hpp: changed type of u1 and u2 in edge_cmp + from vertex1_t to int (from upstream CVS). + boost/graph/detail/adjacency_list.hpp: fixed bug with regards to + in_edge_list for undirected graphs (from upstream CVS). + Closes: #245390. + + * boost/format/internals.hpp: changed format_item::truncate_ 's type + from int to streamsize (from upstream CVS). Closes: #247643. + + -- Domenico Andreoli Wed, 19 May 2004 22:19:32 +0200 + +boost (1.31.0-4) unstable; urgency=low + + * debian/control: libboost-python-dev now replaces old + libboost-dev. Closes: #243432. + + -- Domenico Andreoli Tue, 13 Apr 2004 20:55:24 +0200 + +boost (1.31.0-3) unstable; urgency=low + + * debian/control: libboost-dev depends on libboost-python-dev. + A few header files include headers in , + for some strange reason. Closes: #242714, #242801. + + * debian/control: libboost-dev suggests all the libboost-*-dev + packages. Closes: #242335. + + * debian/rules: proper bjam man page is created. + + * Move to libboost-python-dev package. + + -- Domenico Andreoli Sat, 10 Apr 2004 16:59:35 +0200 + +boost (1.31.0-2) unstable; urgency=low + + * Added symlinks in -dev packages to ease linking of programs which + use Boost libraries. + + * Added symlink to allow dynamic linking to boost-filesystem shared + library. + + * Updated Debian standards version to 3.6.1. + + -- Domenico Andreoli Mon, 22 Mar 2004 02:34:25 +0100 + +boost (1.31.0-1) unstable; urgency=low + + * New upstream version. Closes: #231951, #236016. + - builds with Python 2.3. Closes: #206083. + - new bjam package (thanks, Vladimir Prus) + - new package for shared libboost-filesystem + + * libs/date_time/doc/class_date.html: Fix doc typo. Closes: #223236. + + -- Steve M. Robbins Mon, 8 Mar 2004 23:10:37 -0500 + +boost (1.30.2-3) unstable; urgency=low + + * debian/rules: Build "multi" libraries. Thanks to + Domenico Andreoli for the patch. + + * README.Debian: Document -D_REENTRANT required for threaded + applications. + + -- Steve M. Robbins Sat, 31 Jan 2004 17:24:17 -0500 + +boost (1.30.2-2) unstable; urgency=low + + * debian/control(Uploaders): Add Domenico Andreoli. + + * debian/rules: + libs/graph/src/Makefile: Define _REENTRANT, per policy 10.2. + + -- Steve M. Robbins Sun, 26 Oct 2003 13:57:35 -0500 + +boost (1.30.2-1) unstable; urgency=low + + * New upstream version. Closes: #211715. + + * boost/numeric/interval/detail/c99_rounding_control.hpp: fix typo. + Closes: #203358. + + * boost/filesystem/exception.hpp: + * libs/filesystem/src/exception.cpp: Add implementation of who(), path1(), + and path2(). (Thanks, Benjamin Dauvergne). Closes: #196830. + + -- Steve M. Robbins Sun, 12 Oct 2003 12:11:00 -0400 + +boost (1.30.0-4) unstable; urgency=low + + * boost/math/quaternion.hpp: Apply supplied patch to fix a GCC 3.3 + compile problem. (Thanks, Marcelo E. Magallon). Closes: #199270. + + * libboost-doc: + - Fix broken links. Closes: #199646. + - Use symlink to /usr/include/boost, rather than duplicating + header files. Suggest libboost-dev. Closes: #174979, #175444. + - Include libs/*/examples not already included in HTML. Closes: #191704. + + -- Steve M. Robbins Fri, 11 Jul 2003 18:13:32 -0400 + +boost (1.30.0-3) unstable; urgency=low + + * boost/config/compiler/gcc.hpp: Do not warn about GCC 3.3. + Closes: #193862. + + * boost/python/object/make_ptr_instance.hpp: Add typename keyword, + suggested by Dave Abrahams posting referenced in bug report + (thanks, Ben Burton). Closes: #198524. + + * boost/python/converter/as_to_python_function.hpp: Qualify function + call; workaround for apparent bug in GCC 3.3. (Thanks, Romain + Lerallut). Closes: #192481. + + -- Steve M. Robbins Mon, 26 May 2003 19:17:45 -0400 + +boost (1.30.0-2) unstable; urgency=low + + * debian/rules: Move httrack call to binary-indep. Closes: #187740. + + -- Steve M. Robbins Sat, 5 Apr 2003 18:43:08 -0500 + +boost (1.30.0-1) unstable; urgency=low + + * New upstream. Closes: #186256. + + * debian/copyright: Include copyright and license statement for each + library. Closes: #183153. + + -- Steve M. Robbins Sun, 30 Mar 2003 23:50:57 -0500 + +boost (1.29.0-3) unstable; urgency=low + + * Migrate to GCC 3.2. Closes: #167030, #176269. + - Do not build with stlport. + + -- Steve M. Robbins Sun, 12 Jan 2003 23:47:19 -0500 + +boost (1.29.0-2) unstable; urgency=low + + * debian/rules: Install Boost.Test static libs. Closes: #167106. + + * boost/pool/singleton_pool.hpp: Apply supplied patch (thanks Alexander + Kjeldaas). Closes: #167198. + + -- Steve M. Robbins Sat, 2 Nov 2002 19:32:12 -0500 + +boost (1.29.0-1) unstable; urgency=low + + * New upstream version. Closes: #164830. + + -- Steve M. Robbins Sat, 26 Oct 2002 15:11:17 -0400 + +boost (1.28.0-4) unstable; urgency=low + + * Build with python 2.2. Closes: #159533. + The shared lib ABI changes, but the soname cannot, so introduce + conflicting/replacing package for libboost-python. + + -- Steve M. Robbins Fri, 13 Sep 2002 22:54:25 -0400 + +boost (1.28.0-3) unstable; urgency=low + + * libs/graph/src/Makefile: build using -I/usr/include/stlport. + Closes: #150002. + + * debian/control: change section of -doc package to match ftp + overrides. + + -- Steve M. Robbins Fri, 14 Jun 2002 18:19:09 -0400 + +boost (1.28.0-2) unstable; urgency=low + + * libs/graph/src/Makefile: revert patch to that used in 1.27.0-4, + so that the shared libs are also built with optimization. + Closes: #148056. + + -- Steve M. Robbins Fri, 24 May 2002 14:04:58 -0400 + +boost (1.28.0-1) unstable; urgency=low + + * New upstream version. + + * Set YACC= in debian/rules to inhibit regenerating jam parser source. + This makes for smaller debian diffs (thanks, David Abrahams). + + * Drop the examples package. Code examples are in the doc package. + + -- Steve M. Robbins Fri, 17 May 2002 20:46:44 -0400 + +boost (1.27.0-4) unstable; urgency=low + + * libs/graph/src/Makefile: build graph lib with optimization. + + * control: Do not build-depend on libstlport4.5-dbg, nor on texinfo. + + * Split docs into new libboost-doc package, suggested by libboost-dev. + The -doc package replaces /usr/share/doc-base/Boost from the former -dev + package. Complete the list of documentation files. Closes: #143128. + + * debian/README.Debian: add note for newbies (thanks, Laurent Bonnaud). + Closes: #142634. + + -- Steve M. Robbins Sat, 20 Apr 2002 19:31:38 -0400 + +boost (1.27.0-3) unstable; urgency=low + + * Build shared library packages. + - build graph lib with -fPIC. Closes: #133259. + + -- Steve M. Robbins Sun, 3 Mar 2002 14:39:18 -0500 + +boost (1.27.0-2) unstable; urgency=low + + * boost/detail/atomic_count.hpp: Do not use atomic_count_linux.hpp; the + latter mistakenly uses which turns out to be a bad idea. + * libs/graph/src/Makefile: do not use "-g" flag; some of the symbols + are so large as to upset the assembler on the alpha. + + -- Steve M. Robbins Thu, 28 Feb 2002 18:45:06 -0500 + +boost (1.27.0-1) unstable; urgency=low + + * New upstream version. + + -- Steve M. Robbins Mon, 25 Feb 2002 18:53:58 -0500 + +boost (1.26.0-4) unstable; urgency=low + + * control(source): build-depend on libstlport4.5-dev. + * control(libboost-dev): depend on libstlport4.5-dev. + - new stlport package just got into the archive + * control(libboost-examples): remove dependency on libboost-dev. + - depending on arch "any" package will hold it up until the latter + is built on all arches. + * document reason for depending on STLPort. Closes: #131516. + + -- Steve M. Robbins Sat, 2 Feb 2002 08:11:28 -0500 + +boost (1.26.0-3) unstable; urgency=low + + * control: change libboost-regex-dgb package to priority extra, + to agree with ftp override file. + * Don't build dir_it library, as it is not part of Boost. + - don't build-depend on unzip. Closes: #130290. + + -- Steve M. Robbins Sat, 26 Jan 2002 11:08:31 -0500 + +boost (1.26.0-2) unstable; urgency=low + + * boost/detail/limits.hpp: determine endianness using + Thanks to Daniel Jacobowitz for the tip. + + -- Steve M. Robbins Tue, 22 Jan 2002 11:38:43 -0500 + +boost (1.26.0-1) unstable; urgency=low + + * New maintainer. Closes: #123483. + * New upstream version. Closes: #117106, #107802. + * Build-depend on flex, bison, and texinfo. Closes: #98979. + * Ship all the boost headers, including all of boost/pending. + Closes: #108922, #108925. + * Fixed up the descriptions. + Closes: #97947, #109193, #124899, #124900, #124901, #125620, #125621. + * Register docs with doc-base. Closes: #99396. + + -- Steve M. Robbins Sun, 20 Jan 2002 23:10:28 -0500 + +boost (1.21.1-1) unstable; urgency=low + + * First upstream version. + + -- Raphael Bossek Mon, 12 Mar 2001 23:37:49 +0100 --- boost1.38-1.38.0.orig/debian/libboost-dbg.postinst.in +++ boost1.38-1.38.0/debian/libboost-dbg.postinst.in @@ -0,0 +1,12 @@ +#! /bin/sh + +set -e + +update=/usr/share/python/runtime.d/libboost@PKGVERSION@-dbg.rtupdate + +if which pyversions >/dev/null; then + $update rtupdate none $(pyversions -d) +fi + +#DEBHELPER# + --- boost1.38-1.38.0.orig/debian/documentation-files +++ boost1.38-1.38.0/debian/documentation-files @@ -0,0 +1,8283 @@ +boost.css +boost.png +doc/html/about.html +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/apa.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/advanced.html +doc/html/bbv2/extender.html +doc/html/bbv2/faq.html +doc/html/bbv2.html +doc/html/bbv2/installation.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_id2955045.html +doc/html/boost/accumulators/as_feature_tag_error_of_id2956991.html +doc/html/boost/accumulators/as_feature_tag_extended_id2957555.html +doc/html/boost/accumulators/as_feature_tag_extended_id2957572.html +doc/html/boost/accumulators/as_feature_tag_mean_imm_id2958414.html +doc/html/boost/accumulators/as_feature_tag_mean_laz_id2958398.html +doc/html/boost/accumulators/as_feature_tag_mean_of__id2958431.html +doc/html/boost/accumulators/as_feature_tag_mean_of__id2958447.html +doc/html/boost/accumulators/as_feature_tag_mean_of__id2958464.html +doc/html/boost/accumulators/as_feature_tag_mean_of__id2958494.html +doc/html/boost/accumulators/as_feature_tag_median_w_id2958998.html +doc/html/boost/accumulators/as_feature_tag_median_w_id2959014.html +doc/html/boost/accumulators/as_feature_tag_median_w_id2959031.html +doc/html/boost/accumulators/as_feature_tag_peaks_ov_id2960426.html +doc/html/boost/accumulators/as_feature_tag_peaks_ov_id2960450.html +doc/html/boost/accumulators/as_feature_tag_pot_quan_id2961603.html +doc/html/boost/accumulators/as_feature_tag_pot_quan_id2961626.html +doc/html/boost/accumulators/as_feature_tag_pot_tail_id2962062.html +doc/html/boost/accumulators/as_feature_tag_pot_tail_id2962085.html +doc/html/boost/accumulators/as_feature_tag_tail_var_id2965234.html +doc/html/boost/accumulators/as_feature_tag_tail_var_id2965272.html +doc/html/boost/accumulators/as_feature_tag_variance_id2966002.html +doc/html/boost/accumulators/as_feature_tag_variance_id2966018.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2957589.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2957606.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2961650.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2961673.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2962108.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2962131.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2967879.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2967896.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2967912.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2967943.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2968220.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2968237.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2968254.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2969445.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2969468.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2970938.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2970976.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2971527.html +doc/html/boost/accumulators/as_feature_tag_weighted_id2971544.html +doc/html/boost/accumulators/as_weighted_feature.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2955075.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2956277.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2956784.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2957017.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2957182.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2957643.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2957675.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2958022.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2958565.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2958591.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2958623.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2958675.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2959068.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2959094.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2959125.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2959706.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2959890.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2960119.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2960502.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2960545.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2961725.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2961768.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2962184.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2962227.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2963122.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2963426.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2964010.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2964630.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2965367.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2965440.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2966044.html +doc/html/boost/accumulators/as_weighted_feature_tag_id2966070.html +doc/html/boost/accumulators/covariate1.html +doc/html/boost/accumulators/covariate2.html +doc/html/BOOST_ACCUMULATORS_DEFINE_EXTRACTOR_id2955979.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_id2957724.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_id2970221.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_id2959920.html +doc/html/boost/accumulators/extract/p_square_quantile_for_m_id2960161.html +doc/html/boost/accumulators/extract/p_square_quantile.html +doc/html/boost/accumulators/extract/quantile.html +doc/html/boost/accumulators/extract/reference_tag.html +doc/html/boost/accumulators/extract/relative_tail_variate_m_id2965529.html +doc/html/boost/accumulators/extract/relative_weighted_tail__id2971030.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/value_tag.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_id2957737.html +doc/html/boost/accumulators/extract/weighted_extended_p_squ_id2957750.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_id2969495.html +doc/html/boost/accumulators/extract/weighted_p_square_cumul_id2968853.html +doc/html/boost/accumulators/extract/weighted_p_square_quant_id2969096.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_id2971018.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_id2959186.html +doc/html/boost/accumulators/feature_of.html +doc/html/boost/accumulators/feature_of_tag_absolute_id2965310.html +doc/html/boost/accumulators/feature_of_tag_absolute_id2965405.html +doc/html/boost/accumulators/feature_of_tag_coherent_id2963981.html +doc/html/boost/accumulators/feature_of_tag_covarian_id2956255.html +doc/html/boost/accumulators/feature_of_tag_droppabl_id2955105.html +doc/html/boost/accumulators/feature_of_tag_extended_id2957623.html +doc/html/boost/accumulators/feature_of_tag_extended_id2957633.html +doc/html/boost/accumulators/feature_of_tag_external_id2955252.html +doc/html/boost/accumulators/feature_of_tag_immediat_id2958525.html +doc/html/boost/accumulators/feature_of_tag_immediat_id2958534.html +doc/html/boost/accumulators/feature_of_tag_immediat_id2958544.html +doc/html/boost/accumulators/feature_of_tag_immediat_id2958608.html +doc/html/boost/accumulators/feature_of_tag_immediat_id2958706.html +doc/html/boost/accumulators/feature_of_tag_lazy_var_id2966035.html +doc/html/boost/accumulators/feature_of_tag_lazy_wei_id2966087.html +doc/html/boost/accumulators/feature_of_tag_non_cohe_id2963995.html +doc/html/boost/accumulators/feature_of_tag_non_cohe_id2964033.html +doc/html/boost/accumulators/feature_of_tag_peaks_ov_id2960473.html +doc/html/boost/accumulators/feature_of_tag_peaks_ov_id2960487.html +doc/html/boost/accumulators/feature_of_tag_pot_quan_id2961696.html +doc/html/boost/accumulators/feature_of_tag_pot_quan_id2961711.html +doc/html/boost/accumulators/feature_of_tag_pot_tail_id2962155.html +doc/html/boost/accumulators/feature_of_tag_pot_tail_id2962169.html +doc/html/boost/accumulators/feature_of_tag_referenc_id2955371.html +doc/html/boost/accumulators/feature_of_tag_relative_id2965338.html +doc/html/boost/accumulators/feature_of_tag_relative_id2965478.html +doc/html/boost/accumulators/feature_of_tag_sum_of_v_id2963451.html +doc/html/boost/accumulators/feature_of_tag_tail_Lef_id2963684.html +doc/html/boost/accumulators/feature_of_tag_tail_qua_id2964616.html +doc/html/boost/accumulators/feature_of_tag_tail_var_id2964963.html +doc/html/boost/accumulators/feature_of_tag_tail_wei_id2964992.html +doc/html/boost/accumulators/feature_of_tag_value_Va_id2955536.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2956307.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2956800.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2957199.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2957660.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2957692.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2958038.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2958582.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2958653.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2959084.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2959731.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2959907.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2960136.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2960525.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2960569.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2961748.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2961791.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2962207.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2962250.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2963139.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2963442.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2964653.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2966061.html +doc/html/boost/accumulators/feature_of_tag_weighted_id2970028.html +doc/html/boost/accumulators/feature_of_tag_with_den_id2959048.html +doc/html/boost/accumulators/feature_of_tag_with_den_id2959110.html +doc/html/boost/accumulators/feature_of_tag_with_p_s_id2959058.html +doc/html/boost/accumulators/feature_of_tag_with_p_s_id2959143.html +doc/html/boost/accumulators/features.html +doc/html/boost/accumulators/for_median.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_id2957766.html +doc/html/boost/accumulators/impl/immediate_mean_impl.html +doc/html/boost/accumulators/impl/immediate_weighted_mean_id2968057.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__id2971592.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__id2964260.html +doc/html/boost/accumulators/impl/non_coherent_weighted_t_id2970237.html +doc/html/boost/accumulators/impl/peaks_over_threshold_impl.html +doc/html/boost/accumulators/impl/peaks_over_threshold_pr_id2961447.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_id2959936.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_id2967247.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_id2969511.html +doc/html/boost/accumulators/impl/weighted_peaks_over_thr_id2969621.html +doc/html/boost/accumulators/impl/weighted_p_square_cumul_id2968870.html +doc/html/boost/accumulators/impl/weighted_p_square_quant_id2969113.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__id2970624.html +doc/html/boost/accumulators/impl/weighted_tail_variate_m_id2971046.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_id2968388.html +doc/html/boost/accumulators/impl/with_p_square_cumulativ_id2959440.html +doc/html/boost/accumulators/impl/with_p_square_cumulativ_id2968529.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_id2965882.html +doc/html/boost/accumulators/tag/absolute_weighted_tail__id2971405.html +doc/html/boost/accumulators/tag/abstract_absolute_tail__id2965963.html +doc/html/boost/accumulators/tag/abstract_covariance.html +doc/html/boost/accumulators/tag/abstract_non_coherent_t_id2964596.html +doc/html/boost/accumulators/tag/abstract_peaks_over_thr_id2961584.html +doc/html/boost/accumulators/tag/abstract_relative_tail__id2965972.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_id2970198.html +doc/html/boost/accumulators/tag/accumulator.html +doc/html/boost/accumulators/tag/as_droppable_droppable__id2955146.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_id2957156.html +doc/html/boost/accumulators/tag/error_of_mean_id2957140.html +doc/html/boost/accumulators/tag/extended_p_square.html +doc/html/boost/accumulators/tag/extended_p_square_quant_id2957933.html +doc/html/boost/accumulators/tag/extended_p_square_quantile.html +doc/html/boost/accumulators/tag/external_Feature__Tag___id2955325.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_id2968188.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_id2970568.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_id2960099.html +doc/html/boost/accumulators/tag/p_square_quantile_for_m_id2960406.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_id2965922.html +doc/html/boost/accumulators/tag/relative_weighted_tail__id2971447.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_id2957959.html +doc/html/boost/accumulators/tag/weighted_extended_p_squ_id2957985.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_id2969726.html +doc/html/boost/accumulators/tag/weighted_peaks_over_thr_id2969743.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__id2962496.html +doc/html/boost/accumulators/tag/weighted_p_square_cumul_id2969050.html +doc/html/boost/accumulators/tag/weighted_p_square_quant_id2969411.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_id2968667.html +doc/html/boost/accumulators/tag/with_p_square_cumulativ_id2959576.html +doc/html/boost/accumulators/tag/with_p_square_cumulativ_id2968677.html +doc/html/boost/accumulators/tail_cache_size_named_a_id2963665.html +doc/html/boost/accumulators/tail_cache_size_named_a_id2963675.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_id2972080.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_id3060426.html +doc/html/boost/algorithm/join_if_id3319798.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__id3071192.html +doc/html/boost/algorithm/operator___id3322427.html +doc/html/boost/algorithm/operator_id3322651.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_id2837683.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/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.html +doc/html/boost_asio/index.html +doc/html/boost_asio/overview/core/allocation.html +doc/html/boost_asio/overview/core/async.html +doc/html/boost_asio/overview/core/basics.html +doc/html/boost_asio/overview/core/buffers.html +doc/html/boost_asio/overview/core.html +doc/html/boost_asio/overview/core/line_based.html +doc/html/boost_asio/overview/core/reactor.html +doc/html/boost_asio/overview/core/strands.html +doc/html/boost_asio/overview/core/streams.html +doc/html/boost_asio/overview/core/threads.html +doc/html/boost_asio/overview.html +doc/html/boost_asio/overview/implementation.html +doc/html/boost_asio/overview/networking/bsd_sockets.html +doc/html/boost_asio/overview/networking.html +doc/html/boost_asio/overview/networking/iostreams.html +doc/html/boost_asio/overview/networking/protocols.html +doc/html/boost_asio/overview/posix.html +doc/html/boost_asio/overview/posix/local.html +doc/html/boost_asio/overview/posix/stream_descriptor.html +doc/html/boost_asio/overview/rationale.html +doc/html/boost_asio/overview/serial_ports.html +doc/html/boost_asio/overview/ssl.html +doc/html/boost_asio/overview/timers.html +doc/html/boost_asio/overview/windows.html +doc/html/boost_asio/overview/windows/random_access_handle.html +doc/html/boost_asio/overview/windows/stream_handle.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/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/header.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/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_id3013621.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_id2771792.html +doc/html/boost/date_time/fixed_string_to_int_id2860645.html +doc/html/boost/date_time/format_date_parser.html +doc/html/boost/date_time/from_stream_type_id2772288.html +doc/html/boost/date_time/from_stream_type_id2773368.html +doc/html/boost/date_time/from_stream_type_id2810092.html +doc/html/boost/date_time/from_stream_type_id3018144.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_id2868034.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_id2769680.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_id2772446.html +doc/html/boost/date_time/ostream_time_formatter.html +doc/html/boost/date_time/ostream_time_period_for_id3007588.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_id2872479.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_id2839421.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_id3011690.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__id2831841.html +doc/html/boost/date_time/time_resolution_traits__id2845443.html +doc/html/boost/date_time/time_resolution_traits__id2867698.html +doc/html/boost/date_time/time_resolution_traits__id3022669.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_id3727652.html +doc/html/boost/graph_traits_mpi_graph__id3068253.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_id2774854.html +doc/html/boost/gregorian/operator_id2819631.html +doc/html/boost/gregorian/operator_id2824428.html +doc/html/boost/gregorian/operator_id2832576.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_id2745859.html +doc/html/boost/hash_char_id2792598.html +doc/html/boost/hash_double_id2730102.html +doc/html/boost/hash_float_id2730868.html +doc/html/boost/hash.html +doc/html/boost/hash_int_id3004348.html +doc/html/boost/hash_long_double_id2871846.html +doc/html/boost/hash_long_id2729518.html +doc/html/boost/hash_long_long_id2744798.html +doc/html/boost/hash_short_id2817713.html +doc/html/boost/hash_signed_char_id2783189.html +doc/html/boost/hash_std_string_id2988246.html +doc/html/boost/hash_std_wstring_id2745540.html +doc/html/boost/hash_T_id2807547.html +doc/html/boost/hash_unsigned_char_id2795933.html +doc/html/boost/hash_unsigned_int_id2821658.html +doc/html/boost/hash_unsigned_long_id2978906.html +doc/html/boost/hash_unsigned_long_long_id2739929.html +doc/html/boost/hash_unsigned_short_id2864598.html +doc/html/boost/hash_wchar_t_id2800383.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_instance.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__id3280975.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_id3281594.html +doc/html/boost/interprocess/basic_managed_windows_s_id3281905.html +doc/html/boost/interprocess/basic_obufferstream.html +doc/html/boost/interprocess/basic_ovectorstream.html +doc/html/boost/interprocess/basic_string.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/deque.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.html +doc/html/boost/interprocess/flat_map_index_aux.html +doc/html/boost/interprocess/flat_map_index.html +doc/html/boost/interprocess/flat_multimap.html +doc/html/boost/interprocess/flat_multiset.html +doc/html/boost/interprocess/flat_set.html +doc/html/boost/interprocess/get_pointer_id3286441.html +doc/html/boost/interprocess/get_pointer_id3286780.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__id3291123.html +doc/html/boost/interprocess/interprocess_semaphore.html +doc/html/boost/interprocess/interprocess_upgradable_id3291371.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/list.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.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/multimap.html +doc/html/boost/interprocess/multiset.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___id3243055.html +doc/html/boost/interprocess/operator___id3243118.html +doc/html/boost/interprocess/operator___id3243823.html +doc/html/boost/interprocess/operator___id3243864.html +doc/html/boost/interprocess/operator___id3244629.html +doc/html/boost/interprocess/operator___id3244692.html +doc/html/boost/interprocess/operator___id3245424.html +doc/html/boost/interprocess/operator___id3245473.html +doc/html/boost/interprocess/operator___id3246153.html +doc/html/boost/interprocess/operator___id3246202.html +doc/html/boost/interprocess/operator___id3246936.html +doc/html/boost/interprocess/operator___id3247000.html +doc/html/boost/interprocess/operator___id3247710.html +doc/html/boost/interprocess/operator___id3247773.html +doc/html/boost/interprocess/operator___id3283422.html +doc/html/boost/interprocess/operator___id3283462.html +doc/html/boost/interprocess/operator_id3283503.html +doc/html/boost/interprocess/operator___id3283543.html +doc/html/boost/interprocess/operator_id3283584.html +doc/html/boost/interprocess/operator___id3283624.html +doc/html/boost/interprocess/operator_id3283665.html +doc/html/boost/interprocess/operator_id3283706.html +doc/html/boost/interprocess/operator__id3283746.html +doc/html/boost/interprocess/operator-_id3283781.html +doc/html/boost/interprocess/operator___id3286078.html +doc/html/boost/interprocess/operator___id3286120.html +doc/html/boost/interprocess/operator___id3286163.html +doc/html/boost/interprocess/operator___id3286203.html +doc/html/boost/interprocess/operator___id3286243.html +doc/html/boost/interprocess/operator___id3286283.html +doc/html/boost/interprocess/operator_id3286323.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_id3285628.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/set.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/slist.html +doc/html/boost/interprocess/swap_id3283821.html +doc/html/boost/interprocess/swap_id3286361.html +doc/html/boost/interprocess/swap_id3286741.html +doc/html/boost/interprocess/try_to_lock.html +doc/html/boost/interprocess/try_to_lock_type.html +doc/html/boost/interprocess/unique_instance.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_USE_GENERIC_EMULATION_id3290781.html +doc/html/BOOST_INTERPROCESS_USE_GENERIC_EMULATION_id3290992.html +doc/html/BOOST_INTERPROCESS_USE_GENERIC_EMULATION_id3291104.html +doc/html/BOOST_INTERPROCESS_USE_GENERIC_EMULATION_id3291234.html +doc/html/BOOST_INTERPROCESS_USE_GENERIC_EMULATION_id3291353.html +doc/html/boost/interprocess/vector.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_id3504163.html +doc/html/boost/intrusive/make_unordered_set.html +doc/html/boost/intrusive/make_unordered_set_memb_id3504557.html +doc/html/boost/intrusive/max_pointer_plus_bits.html +doc/html/boost/intrusive/max_pointer_plus_bits_v_id3431741.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_id3431774.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_MPI_DATATYPE.html +doc/html/boost/is_recursive_wrapper.html +doc/html/boost/is_reference_wrapper.html +doc/html/boost/lambda/plain_return_type_1_una_id3801074.html +doc/html/boost/lambda/plain_return_type_1_una_id3801115.html +doc/html/boost/lambda/plain_return_type_1_una_id3801600.html +doc/html/boost/lambda/plain_return_type_1_una_id3801642.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800460.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800509.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800557.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800606.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800655.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800699.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800743.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800787.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800831.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800892.html +doc/html/boost/lambda/plain_return_type_2_ari_id3800952.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801013.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801157.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801218.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801268.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801318.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801378.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801429.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801479.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801540.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801684.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801744.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801804.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801864.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801924.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801957.html +doc/html/boost/lambda/plain_return_type_2_ari_id3801989.html +doc/html/boost/lambda/plain_return_type_2_ari_id3802022.html +doc/html/boost/lambda/plain_return_type_2_ari_id3802052.html +doc/html/boost/lambda/plain_return_type_2_ari_id3802105.html +doc/html/boost/last_value.html +doc/html/boost/last_value_void_id3332787.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-_id2738737.html +doc/html/boost/local_time/operator-__id2738766.html +doc/html/boost/local_time/operator-__id2738948.html +doc/html/boost/local_time/operator__id2738976.html +doc/html/boost/local_time/operator___id2739004.html +doc/html/boost/local_time/operator__id2822123.html +doc/html/boost/local_time/operator___id2822214.html +doc/html/boost/local_time/operator-_id2822241.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_id3541184.html +doc/html/boost/logic/indeterminate.html +doc/html/boost/logic/indeterminate_name.html +doc/html/boost/logic/operator___id2736180.html +doc/html/boost/logic/operator_id2769085.html +doc/html/boost/logic/operator_id2776146.html +doc/html/boost/logic/operator__id2821117.html +doc/html/boost/logic/operator_id3319539.html +doc/html/boost/logic/operator_id3331835.html +doc/html/boost/logic/operator___id3405474.html +doc/html/boost/logic/operator___id3555852.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__id3870294.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_id2813114.html +doc/html/boost/mpi/allocator_void_id2813114/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_id2780176.html +doc/html/boost/mpi/get_id2780206.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_id3037864.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___id2780718.html +doc/html/boost/mpi/operator___id2780764.html +doc/html/boost/mpi/operator_id2780810.html +doc/html/boost/mpi/operator__id2780873.html +doc/html/boost/mpi/operator-_id2840445.html +doc/html/boost/mpi/operator___id2843681.html +doc/html/boost/mpi/operator___id2998741.html +doc/html/boost/mpi/operator___id2998793.html +doc/html/boost/mpi/operator___id3037705.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_id3039210.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/as_max.html +doc/html/boost/numeric/as_min.html +doc/html/boost/numeric/as_one.html +doc/html/boost/numeric/assign.html +doc/html/boost/numeric/as_zero.html +doc/html/boost/numeric/average.html +doc/html/boost/numeric/complement.html +doc/html/boost/numeric/default_.html +doc/html/boost/numeric/divides_assign.html +doc/html/boost/numeric/divides.html +doc/html/boost/numeric/equal_to.html +doc/html/boost/numeric/functional/as_max_base.html +doc/html/boost/numeric/functional/as_max.html +doc/html/boost/numeric/functional/as_max_T__std_valarray__id2975855.html +doc/html/boost/numeric/functional/as_max_T__std_vector_ta_id2976390.html +doc/html/boost/numeric/functional/as_min_base_Arg__typena_id2974525.html +doc/html/boost/numeric/functional/as_min_base.html +doc/html/boost/numeric/functional/as_min.html +doc/html/boost/numeric/functional/as_min_T__std_valarray__id2975816.html +doc/html/boost/numeric/functional/as_min_T__std_vector_ta_id2976350.html +doc/html/boost/numeric/functional/as_one_base.html +doc/html/boost/numeric/functional/as_one.html +doc/html/boost/numeric/functional/as_one_T__std_valarray__id2975934.html +doc/html/boost/numeric/functional/as_one_T__std_vector_ta_id2976468.html +doc/html/boost/numeric/functional/assign_base.html +doc/html/boost/numeric/functional/assign.html +doc/html/boost/numeric/functional/as_zero_base.html +doc/html/boost/numeric/functional/as_zero.html +doc/html/boost/numeric/functional/as_zero_T__std_valarray_id2975895.html +doc/html/boost/numeric/functional/as_zero_T__std_vector_t_id2976429.html +doc/html/boost/numeric/functional/average_base.html +doc/html/boost/numeric/functional/average_base_Left__Righ_id2974371.html +doc/html/boost/numeric/functional/average.html +doc/html/boost/numeric/functional/average_Left__Right__st_id2975623.html +doc/html/boost/numeric/functional/average_Left__Right__st_id2976232.html +doc/html/boost/numeric/functional/complement_base.html +doc/html/boost/numeric/functional/complement.html +doc/html/boost/numeric/functional/divides_assign_base.html +doc/html/boost/numeric/functional/divides_assign.html +doc/html/boost/numeric/functional/divides_base.html +doc/html/boost/numeric/functional/divides.html +doc/html/boost/numeric/functional/equal_to_base.html +doc/html/boost/numeric/functional/equal_to.html +doc/html/boost/numeric/functional/greater_base.html +doc/html/boost/numeric/functional/greater_equal_base.html +doc/html/boost/numeric/functional/greater_equal.html +doc/html/boost/numeric/functional/greater.html +doc/html/boost/numeric/functional/left_ref.html +doc/html/boost/numeric/functional/less_base.html +doc/html/boost/numeric/functional/less_equal_base.html +doc/html/boost/numeric/functional/less_equal.html +doc/html/boost/numeric/functional/less.html +doc/html/boost/numeric/functional/logical_not_base.html +doc/html/boost/numeric/functional/logical_not.html +doc/html/boost/numeric/functional/max_assign_base.html +doc/html/boost/numeric/functional/max_assign.html +doc/html/boost/numeric/functional/max_assign_Left__Right__id2975568.html +doc/html/boost/numeric/functional/max_assign_Left__Right__id2976178.html +doc/html/boost/numeric/functional/min_assign_base.html +doc/html/boost/numeric/functional/min_assign.html +doc/html/boost/numeric/functional/min_assign_Left__Right__id2975514.html +doc/html/boost/numeric/functional/min_assign_Left__Right__id2976124.html +doc/html/boost/numeric/functional/minus_assign_base.html +doc/html/boost/numeric/functional/minus_assign.html +doc/html/boost/numeric/functional/minus_base.html +doc/html/boost/numeric/functional/minus.html +doc/html/boost/numeric/functional/modulus_assign_base.html +doc/html/boost/numeric/functional/modulus_assign.html +doc/html/boost/numeric/functional/modulus_base.html +doc/html/boost/numeric/functional/modulus.html +doc/html/boost/numeric/functional/multiplies_assign_base.html +doc/html/boost/numeric/functional/multiplies_assign.html +doc/html/boost/numeric/functional/multiplies_base.html +doc/html/boost/numeric/functional/multiplies.html +doc/html/boost/numeric/functional/multiply_and_promote_to_id2971496.html +doc/html/boost/numeric/functional/not_equal_to_base.html +doc/html/boost/numeric/functional/not_equal_to.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_id2956699.html +doc/html/boost/numeric/functional/plus_assign_base.html +doc/html/boost/numeric/functional/plus_assign.html +doc/html/boost/numeric/functional/plus_base.html +doc/html/boost/numeric/functional/plus.html +doc/html/boost/numeric/functional/promote_base.html +doc/html/boost/numeric/functional/promote_base_ToFrom__To_id2974445.html +doc/html/boost/numeric/functional/promote_bool_const__Fro_id2975789.html +doc/html/boost/numeric/functional/promote_bool__From__voi_id2975745.html +doc/html/boost/numeric/functional/promote.html +doc/html/boost/numeric/functional/promote_To__From__std_v_id2975653.html +doc/html/boost/numeric/functional/promote_To__From__std_v_id2976258.html +doc/html/boost/numeric/functional/promote_ToFrom__ToFrom__id2975702.html +doc/html/boost/numeric/functional/promote_ToFrom__ToFrom__id2976306.html +doc/html/boost/numeric/functional/tag_std_valarray_T_id2975494.html +doc/html/boost/numeric/functional/tag_std_vector_T__Al_id2976097.html +doc/html/boost/numeric/functional/unary_minus_base.html +doc/html/boost/numeric/functional/unary_minus.html +doc/html/boost/numeric/functional/unary_plus_base.html +doc/html/boost/numeric/functional/unary_plus.html +doc/html/boost/numeric/greater_equal.html +doc/html/boost/numeric/greater.html +doc/html/boost/numeric/less_equal.html +doc/html/boost/numeric/less.html +doc/html/boost/numeric/logical_not.html +doc/html/boost/numeric/max_assign.html +doc/html/boost/numeric/min_assign.html +doc/html/boost/numeric/minus_assign.html +doc/html/boost/numeric/minus.html +doc/html/boost/numeric/modulus_assign.html +doc/html/boost/numeric/modulus.html +doc/html/boost/numeric/multiplies_assign.html +doc/html/boost/numeric/multiplies.html +doc/html/boost/numeric/not_equal_to.html +doc/html/boost/numeric/one.html +doc/html/boost/numeric/one_or_default.html +doc/html/boost/numeric/op/as_max.html +doc/html/boost/numeric/op/as_min.html +doc/html/boost/numeric/op/as_one.html +doc/html/boost/numeric/op/assign.html +doc/html/boost/numeric/op/as_zero.html +doc/html/boost/numeric/op/average.html +doc/html/boost/numeric/op/complement.html +doc/html/boost/numeric/op/divides_assign.html +doc/html/boost/numeric/op/divides.html +doc/html/boost/numeric/op/equal_to.html +doc/html/boost/numeric/op/greater_equal.html +doc/html/boost/numeric/op/greater.html +doc/html/boost/numeric/op/less_equal.html +doc/html/boost/numeric/op/less.html +doc/html/boost/numeric/op/logical_not.html +doc/html/boost/numeric/op/max_assign.html +doc/html/boost/numeric/op/min_assign.html +doc/html/boost/numeric/op/minus_assign.html +doc/html/boost/numeric/op/minus.html +doc/html/boost/numeric/op/modulus_assign.html +doc/html/boost/numeric/op/modulus.html +doc/html/boost/numeric/op/multiplies_assign.html +doc/html/boost/numeric/op/multiplies.html +doc/html/boost/numeric/op/not_equal_to.html +doc/html/boost/numeric/op/outer_product.html +doc/html/boost/numeric/op/plus_assign.html +doc/html/boost/numeric/op/plus.html +doc/html/boost/numeric/op/promote.html +doc/html/boost/numeric/op/unary_minus.html +doc/html/boost/numeric/op/unary_plus.html +doc/html/boost/numeric/outer_product.html +doc/html/boost/numeric/plus_assign.html +doc/html/boost/numeric/plus.html +doc/html/boost/numeric/unary_minus.html +doc/html/boost/numeric/unary_plus.html +doc/html/boost/numeric/zero.html +doc/html/boost/numeric/zero_or_default.html +doc/html/boost/operator_id3866513.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_id2828696.html +doc/html/boost/posix_time/minutes.html +doc/html/boost/posix_time/operator-__id2775219.html +doc/html/boost/posix_time/operator__id2805386.html +doc/html/boost/posix_time/operator-__id2870395.html +doc/html/boost/posix_time/operator__id2870422.html +doc/html/boost/posix_time/operator_id2871942.html +doc/html/boost/posix_time/operator___id3007942.html +doc/html/boost/posix_time/operator-_id3007969.html +doc/html/boost/posix_time/operator___id3019743.html +doc/html/boost/posix_time/operator-_id3019770.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_PP_LOCAL_LIMITS_id3248876.html +doc/html/BOOST_PP_LOCAL_LIMITS_id3253135.html +doc/html/BOOST_PP_LOCAL_LIMITS_id3257197.html +doc/html/BOOST_PP_LOCAL_LIMITS_id3260154.html +doc/html/BOOST_PP_LOCAL_LIMITS_id3264167.html +doc/html/BOOST_PP_LOCAL_LIMITS_id3267988.html +doc/html/BOOST_PP_LOCAL_LIMITS_id3271396.html +doc/html/BOOST_PP_LOCAL_LIMITS_id3279032.html +doc/html/BOOST_PP_LOCAL_MACRO_id3248867.html +doc/html/BOOST_PP_LOCAL_MACRO_id3253126.html +doc/html/BOOST_PP_LOCAL_MACRO_id3257188.html +doc/html/BOOST_PP_LOCAL_MACRO_id3260144.html +doc/html/BOOST_PP_LOCAL_MACRO_id3264158.html +doc/html/BOOST_PP_LOCAL_MACRO_id3267978.html +doc/html/BOOST_PP_LOCAL_MACRO_id3271387.html +doc/html/BOOST_PP_LOCAL_MACRO_id3279023.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_id3004973.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_id2728862.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_id3058317.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_id2776485.html +doc/html/boost/program_options/parse_environment_id2829506.html +doc/html/boost/program_options/parse_environment_id2872584.html +doc/html/boost/program_options/positional_options_desc_id2789064.html +doc/html/boost/program_options/store_id2743092.html +doc/html/boost/program_options/store_id3046665.html +doc/html/boost/program_options/too_few_positional_opti_id2737929.html +doc/html/boost/program_options/too_many_positional_opt_id3019573.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_id2819178.html +doc/html/boost/program_options/value_semantic_codecvt__id2769424.html +doc/html/boost/program_options/value_semantic_codecvt__id2769440.html +doc/html/boost/program_options/value_semantic_codecvt__id2782784.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_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_id3678732.html +doc/html/BOOST_PROTO_a_id3679194.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_id3688800.html +doc/html/boost/proto/as_expr_id3688571.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_id3689253.html +doc/html/boost/proto/child_id3689007.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_id3659939.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_id3659589.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_id3660682.html +doc/html/boost/proto/exact.html +doc/html/boost/proto/exops/_is_extension__default__id3675430.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_id3663661.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_FUSION_V2.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_id3689525.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_id3665974.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/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___id3665592.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_id3665868.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_id3689650.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_id3666222.html +doc/html/boost/proto/_value.html +doc/html/boost/proto/value_id3689417.html +doc/html/boost/proto/vararg.html +doc/html/boost/proto/when_Grammar__Fun_id3696078.html +doc/html/boost/proto/when_Grammar__R_A___id3696161.html +doc/html/boost/proto/when.html +doc/html/boost/recursive_wrapper.html +doc/html/boost/reference_wrapper.html +doc/html/boost/signal.html +doc/html/boost/signalN.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_id3865910.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_id3818808.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_id3804771.html +doc/html/boost/units/add_typeof_helper_quant_id3804826.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__id3819306.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_id3818518.html +doc/html/boost/units/base_unit_info_abstract_id3818547.html +doc/html/boost/units/base_unit_info_abstract_id3818576.html +doc/html/boost/units/base_unit_info_abstract_id3818606.html +doc/html/boost/units/base_unit_info_abstract_id3818635.html +doc/html/boost/units/base_unit_info_abstract_id3818665.html +doc/html/boost/units/base_unit_info_abstract_id3818694.html +doc/html/boost/units/base_unit_info_abstract_id3818724.html +doc/html/boost/units/base_unit_info_abstract_id3818754.html +doc/html/boost/units/base_unit_info_angle_ar_id3818979.html +doc/html/boost/units/base_unit_info_angle_ar_id3819033.html +doc/html/boost/units/base_unit_info_angle_re_id3819198.html +doc/html/boost/units/base_unit_info_astronom_id3819341.html +doc/html/boost/units/base_unit_info_astronom_id3819395.html +doc/html/boost/units/base_unit_info_astronom_id3819450.html +doc/html/boost/units/base_unit_info_astronom_id3819543.html +doc/html/boost/units/base_unit_info.html +doc/html/boost/units/base_unit_info_imperial_id3819740.html +doc/html/boost/units/base_unit_info_imperial_id3819794.html +doc/html/boost/units/base_unit_info_imperial_id3819848.html +doc/html/boost/units/base_unit_info_imperial_id3819902.html +doc/html/boost/units/base_unit_info_imperial_id3819956.html +doc/html/boost/units/base_unit_info_imperial_id3820009.html +doc/html/boost/units/base_unit_info_imperial_id3820063.html +doc/html/boost/units/base_unit_info_imperial_id3820117.html +doc/html/boost/units/base_unit_info_imperial_id3820171.html +doc/html/boost/units/base_unit_info_imperial_id3820225.html +doc/html/boost/units/base_unit_info_imperial_id3820278.html +doc/html/boost/units/base_unit_info_imperial_id3820332.html +doc/html/boost/units/base_unit_info_imperial_id3820460.html +doc/html/boost/units/base_unit_info_imperial_id3820514.html +doc/html/boost/units/base_unit_info_imperial_id3820568.html +doc/html/boost/units/base_unit_info_imperial_id3820622.html +doc/html/boost/units/base_unit_info_imperial_id3820675.html +doc/html/boost/units/base_unit_info_metric_a_id3820779.html +doc/html/boost/units/base_unit_info_metric_d_id3820979.html +doc/html/boost/units/base_unit_info_metric_f_id3821029.html +doc/html/boost/units/base_unit_info_metric_h_id3821117.html +doc/html/boost/units/base_unit_info_metric_m_id3821242.html +doc/html/boost/units/base_unit_info_metric_m_id3821293.html +doc/html/boost/units/base_unit_info_metric_n_id3821380.html +doc/html/boost/units/base_unit_info_metric_t_id3821431.html +doc/html/boost/units/base_unit_info_metric_y_id3821519.html +doc/html/boost/units/base_unit_info_us_cup_b_id3821928.html +doc/html/boost/units/base_unit_info_us_dram__id3821981.html +doc/html/boost/units/base_unit_info_us_fluid_id3822035.html +doc/html/boost/units/base_unit_info_us_fluid_id3822089.html +doc/html/boost/units/base_unit_info_us_foot__id3822142.html +doc/html/boost/units/base_unit_info_us_gallo_id3822196.html +doc/html/boost/units/base_unit_info_us_gill__id3822250.html +doc/html/boost/units/base_unit_info_us_grain_id3822303.html +doc/html/boost/units/base_unit_info_us_hundr_id3822357.html +doc/html/boost/units/base_unit_info_us_inch__id3822410.html +doc/html/boost/units/base_unit_info_us_mil_b_id3822464.html +doc/html/boost/units/base_unit_info_us_mile__id3822517.html +doc/html/boost/units/base_unit_info_us_minim_id3822571.html +doc/html/boost/units/base_unit_info_us_ounce_id3822624.html +doc/html/boost/units/base_unit_info_us_quart_id3822752.html +doc/html/boost/units/base_unit_info_us_table_id3822805.html +doc/html/boost/units/base_unit_info_us_teasp_id3822859.html +doc/html/boost/units/base_unit_info_us_ton_b_id3822913.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_id3802203.html +doc/html/boost/units/divide_typeof_helper_bo_id3802289.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__id3799073.html +doc/html/boost/units/get_dimension.html +doc/html/boost/units/get_dimension_quantity__id3799098.html +doc/html/boost/units/get_dimension_unit_Dim__id3799043.html +doc/html/boost/units/get_system_absolute_Uni_id3799181.html +doc/html/boost/units/get_system.html +doc/html/boost/units/get_system_quantity_Uni_id3799206.html +doc/html/boost/units/get_system_unit_Dim__Sy_id3799151.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_id3799862.html +doc/html/boost/units/is_dimensionless.html +doc/html/boost/units/is_dimensionless_quanti_id3799978.html +doc/html/boost/units/is_dimensionless_quantity.html +doc/html/boost/units/is_dimensionless_unit_d_id3799958.html +doc/html/boost/units/is_dimensionless_unit.html +doc/html/boost/units/is_dimension_list_dimen_id3799928.html +doc/html/boost/units/is_dimension_list.html +doc/html/boost/units/is_dimension_list_list__id3799907.html +doc/html/boost/units/is_dim.html +doc/html/boost/units/is_quantity.html +doc/html/boost/units/is_quantity_of_dimensio_id3800141.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_id3800203.html +doc/html/boost/units/is_quantity_quantity_Un_id3800090.html +doc/html/boost/units/is_unit.html +doc/html/boost/units/is_unit_of_dimension_ab_id3800334.html +doc/html/boost/units/is_unit_of_dimension.html +doc/html/boost/units/is_unit_of_dimension_un_id3800311.html +doc/html/boost/units/is_unit_of_system_absol_id3800410.html +doc/html/boost/units/is_unit_of_system.html +doc/html/boost/units/is_unit_of_system_unit__id3800387.html +doc/html/boost/units/is_unit_unit_Dim__Syste_id3800261.html +doc/html/boost/units/length_base_dimension.html +doc/html/boost/units/luminous_intensity_base_id3808451.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_id3803101.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_id3816727.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__id3802161.html +doc/html/boost/units/multiply_typeof_helper__id3802246.html +doc/html/boost/units/multiply_typeof_helper__id3802332.html +doc/html/boost/units/multiply_typeof_helper__id3802379.html +doc/html/BOOST_UNITS_NO_COMPILER_CHECK.html +doc/html/boost/units/operator_id3799763.html +doc/html/boost/units/operator_id3802426.html +doc/html/boost/units/operator/_id3802478.html +doc/html/boost/units/operator_id3802531.html +doc/html/boost/units/operator/_id3802583.html +doc/html/boost/units/operator_id3802635.html +doc/html/boost/units/operator_id3802696.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_id3806926.html +doc/html/boost/units/pow_id3797534.html +doc/html/boost/units/pow_id3803587.html +doc/html/boost_units/Quantities.html +doc/html/boost/units/quantity_BOOST_UNITS_DI_id3804172.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_id3806895.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_id3807028.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_id3809897.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3810047.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3810199.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3810603.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3810881.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3811661.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3812004.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3812438.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3813243.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3813897.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3814143.html +doc/html/boost/units/si/constants/codata/BOOST_UNITS_PHYSICAL_CO_id3814667.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_id3816927.html +doc/html/boost/units/si/kilogrammes.html +doc/html/boost/units/si/kilogrammes_per_cubic_m_id3816229.html +doc/html/boost/units/si/kilogrammes_per_square__id3816935.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__id3804897.html +doc/html/boost/units/subtract_typeof_helper__id3804947.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/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_XPR_ENSURE_.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_xpr.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_PROTO_DEFINE_FUNC_id3882444.html +doc/html/boost/xpressive/BOOST_PROTO_DEFINE_VARA_id3882536.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_.html +doc/html/boost/xpressive/cpp_regex_traits.html +doc/html/boost/xpressive/cref_id3882511.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_.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_id3890143.html +doc/html/boost/xpressive/has_fold_case_c_regex_t_id3889350.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/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_id3887375.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_id3886225.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_id3882487.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.html +doc/html/boost/xpressive/s0.html +doc/html/boost/xpressive/s1.html +doc/html/boost/xpressive/s2.html +doc/html/boost/xpressive/s3.html +doc/html/boost/xpressive/s4.html +doc/html/boost/xpressive/s5.html +doc/html/boost/xpressive/s6.html +doc/html/boost/xpressive/s7.html +doc/html/boost/xpressive/s8.html +doc/html/boost/xpressive/s9.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_.html +doc/html/boost/xpressive/str.html +doc/html/boost/xpressive/sub_match.html +doc/html/boost/xpressive/swap_id3879446.html +doc/html/boost/xpressive/top.html +doc/html/boost/xpressive/upper.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/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/id2665304-bb.html +doc/html/images/callouts/1.png +doc/html/images/callouts/2.png +doc/html/images/callouts/3.png +doc/html/images/callouts/4.png +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/language.html +doc/html/jam/miscellaneous.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/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/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/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_id3802764.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 +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/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.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.html +libs/exception/doc/diagnostic_information.html +libs/exception/doc/enable_current_exception.html +libs/exception/doc/enable_error_info.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_cloning_hpp.html +libs/exception/doc/exception_constructors.html +libs/exception/doc/exception_destructor.html +libs/exception/doc/exception_diagnostic_information_hpp.html +libs/exception/doc/exception_enable_current_exception_hpp.html +libs/exception/doc/exception_enable_error_info_hpp.html +libs/exception/doc/exception_error_info_group_hpp.html +libs/exception/doc/exception_error_info_hpp.html +libs/exception/doc/exception_error_info_value_hpp.html +libs/exception/doc/exception_exception_hpp.html +libs/exception/doc/exception_get_error_info_hpp.html +libs/exception/doc/exception_hpp.html +libs/exception/doc/exception.html +libs/exception/doc/exception_operator_shl.html +libs/exception/doc/exception_ptr.html +libs/exception/doc/get_error_info.html +libs/exception/doc/name_idx.html +libs/exception/doc/reno.css +libs/exception/doc/rethrow_exception.html +libs/exception/doc/throw_exception_hpp.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/unknown_exception.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/flyweight_rep.png +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/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/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/unfused_generic.html +libs/fusion/doc/html/fusion/functional/adapters/unfused_lvalue_args.html +libs/fusion/doc/html/fusion/functional/adapters/unfused_rvalue_args.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_genrc.html +libs/fusion/doc/html/fusion/functional/generation/functions/mk_unfused_lvargs.html +libs/fusion/doc/html/fusion/functional/generation/functions/mk_unfused_rvargs.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_genrc.html +libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_unfused_lvargs.html +libs/fusion/doc/html/fusion/functional/generation/metafunctions/mk_unfused_rvargs.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/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/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/images/alert.png +libs/fusion/doc/html/images/caution.png +libs/fusion/doc/html/images/fusion_org.png +libs/fusion/doc/html/images/note.png +libs/fusion/doc/html/images/tip.png +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/dir_000000.html +libs/gil/doc/html/dir_000001.html +libs/gil/doc/html/dir_000002.html +libs/gil/doc/html/dir_000003.html +libs/gil/doc/html/dir_000004.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_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_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_0125.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_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_0144.html +libs/gil/doc/html/g_i_l_0147.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_0150.html +libs/gil/doc/html/g_i_l_0151.html +libs/gil/doc/html/g_i_l_0152.html +libs/gil/doc/html/g_i_l_0156.html +libs/gil/doc/html/g_i_l_0164.html +libs/gil/doc/html/g_i_l_0165.html +libs/gil/doc/html/g_i_l_0166.html +libs/gil/doc/html/g_i_l_0167.html +libs/gil/doc/html/g_i_l_0168.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_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_0222.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_0257.html +libs/gil/doc/html/g_i_l_0259.html +libs/gil/doc/html/g_i_l_0261.html +libs/gil/doc/html/g_i_l_0263.html +libs/gil/doc/html/g_i_l_0265.html +libs/gil/doc/html/g_i_l_0267.html +libs/gil/doc/html/g_i_l_0269.html +libs/gil/doc/html/g_i_l_0271.html +libs/gil/doc/html/g_i_l_0273.html +libs/gil/doc/html/g_i_l_0275.html +libs/gil/doc/html/g_i_l_0277.html +libs/gil/doc/html/g_i_l_0279.html +libs/gil/doc/html/g_i_l_0281.html +libs/gil/doc/html/g_i_l_0283.html +libs/gil/doc/html/g_i_l_0285.html +libs/gil/doc/html/g_i_l_0287.html +libs/gil/doc/html/g_i_l_0289.html +libs/gil/doc/html/g_i_l_0291.html +libs/gil/doc/html/g_i_l_0293.html +libs/gil/doc/html/g_i_l_0295.html +libs/gil/doc/html/g_i_l_0297.html +libs/gil/doc/html/g_i_l_0299.html +libs/gil/doc/html/g_i_l_0301.html +libs/gil/doc/html/g_i_l_0303.html +libs/gil/doc/html/g_i_l_0305.html +libs/gil/doc/html/g_i_l_0307.html +libs/gil/doc/html/g_i_l_0309.html +libs/gil/doc/html/g_i_l_0311.html +libs/gil/doc/html/g_i_l_0313.html +libs/gil/doc/html/g_i_l_0315.html +libs/gil/doc/html/g_i_l_0317.html +libs/gil/doc/html/g_i_l_0319.html +libs/gil/doc/html/g_i_l_0321.html +libs/gil/doc/html/g_i_l_0323.html +libs/gil/doc/html/g_i_l_0325.html +libs/gil/doc/html/g_i_l_0327.html +libs/gil/doc/html/g_i_l_0329.html +libs/gil/doc/html/g_i_l_0331.html +libs/gil/doc/html/g_i_l_0333.html +libs/gil/doc/html/g_i_l_0335.html +libs/gil/doc/html/g_i_l_0337.html +libs/gil/doc/html/g_i_l_0339.html +libs/gil/doc/html/g_i_l_0341.html +libs/gil/doc/html/g_i_l_0343.html +libs/gil/doc/html/g_i_l_0345.html +libs/gil/doc/html/g_i_l_0347.html +libs/gil/doc/html/g_i_l_0349.html +libs/gil/doc/html/g_i_l_0351.html +libs/gil/doc/html/g_i_l_0353.html +libs/gil/doc/html/g_i_l_0355.html +libs/gil/doc/html/g_i_l_0357.html +libs/gil/doc/html/g_i_l_0359.html +libs/gil/doc/html/g_i_l_0361.html +libs/gil/doc/html/g_i_l_0363.html +libs/gil/doc/html/g_i_l_0365.html +libs/gil/doc/html/g_i_l_0367.html +libs/gil/doc/html/g_i_l_0369.html +libs/gil/doc/html/g_i_l_0371.html +libs/gil/doc/html/g_i_l_0373.html +libs/gil/doc/html/g_i_l_0375.html +libs/gil/doc/html/g_i_l_0377.html +libs/gil/doc/html/g_i_l_0379.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_0386.html +libs/gil/doc/html/g_i_l_0388.html +libs/gil/doc/html/g_i_l_0390.html +libs/gil/doc/html/g_i_l_0392.html +libs/gil/doc/html/g_i_l_0394.html +libs/gil/doc/html/g_i_l_0396.html +libs/gil/doc/html/g_i_l_0398.html +libs/gil/doc/html/g_i_l_0399.html +libs/gil/doc/html/g_i_l_0400.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_0405.html +libs/gil/doc/html/g_i_l_0407.html +libs/gil/doc/html/g_i_l_0409.html +libs/gil/doc/html/g_i_l_0411.html +libs/gil/doc/html/g_i_l_0413.html +libs/gil/doc/html/g_i_l_0415.html +libs/gil/doc/html/g_i_l_0417.html +libs/gil/doc/html/g_i_l_0419.html +libs/gil/doc/html/g_i_l_0421.html +libs/gil/doc/html/g_i_l_0423.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_0427.html +libs/gil/doc/html/g_i_l_0428.html +libs/gil/doc/html/g_i_l_0430.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_0441.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_0446.html +libs/gil/doc/html/g_i_l_0447.html +libs/gil/doc/html/g_i_l_0449.html +libs/gil/doc/html/g_i_l_0451.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_0491.html +libs/gil/doc/html/g_i_l_0493.html +libs/gil/doc/html/g_i_l_0495.html +libs/gil/doc/html/g_i_l_0497.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_0516.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_0520.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_0524.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_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_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_0545.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_0551.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_0562.html +libs/gil/doc/html/g_i_l_0563.html +libs/gil/doc/html/g_i_l_0564.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_0570.html +libs/gil/doc/html/g_i_l_0572.html +libs/gil/doc/html/g_i_l_0574.html +libs/gil/doc/html/g_i_l_0575.html +libs/gil/doc/html/g_i_l_0577.html +libs/gil/doc/html/g_i_l_0579.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_0594.html +libs/gil/doc/html/g_i_l_0595.html +libs/gil/doc/html/g_i_l_0596.html +libs/gil/doc/html/g_i_l_0597.html +libs/gil/doc/html/g_i_l_0598.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_0603.html +libs/gil/doc/html/g_i_l_0605.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_0612.html +libs/gil/doc/html/g_i_l_0614.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_0619.html +libs/gil/doc/html/g_i_l_0621.html +libs/gil/doc/html/g_i_l_0622.html +libs/gil/doc/html/g_i_l_0623.html +libs/gil/doc/html/g_i_l_0624.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_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_0632.html +libs/gil/doc/html/g_i_l_0633.html +libs/gil/doc/html/g_i_l_0634.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/gil__all_8hpp.html +libs/gil/doc/html/gildesignguide.html +libs/gil/doc/html/giltutorial.html +libs/gil/doc/html/globals_func.html +libs/gil/doc/html/globals.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/default.css +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_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/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/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/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/read_dimacs.html +libs/graph/doc/read_graphml.html +libs/graph/doc/read_graphml.rst +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_graphml.rst +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/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/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/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/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/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/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/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/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/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/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/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/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/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.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/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/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/extern_c/c99.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/extern_c.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/extern_c/tr1.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/extern_c/tr1_ref.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/fpclass.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/next_float/float_advance.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/next_float/float_distance.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/next_float/float_next.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/next_float/float_prior.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/next_float.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/next_float/nextafter.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/rounding.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/rounding/modf.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/rounding/round.html +libs/math/doc/sf_and_dist/html/math_toolkit/special/rounding/trunc.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_ntl.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/std_real_concept_check.cpp +libs/math/tools/lanczos_generator.cpp +libs/math/tools/ntl_rr_lanczos.hpp +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.html +libs/mpl/doc/refmanual/categorized-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.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.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/data-concepts.html +libs/mpl/doc/refmanual/data-miscellaneous.html +libs/mpl/doc/refmanual/data-types.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.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.html +libs/mpl/doc/refmanual/inserters.html +libs/mpl/doc/refmanual/inserters-inserter.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-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/tag-dispatched.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.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/multi_index_cont_example.png +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/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/overview.htm +libs/numeric/ublas/doc/products.htm +libs/numeric/ublas/doc/range.htm +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/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/index.html +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/associative_property_map.html +libs/property_map/const_assoc_property_map.html +libs/property_map/doc/dynamic_property_map.html +libs/property_map/example1.cpp +libs/property_map/example3.cpp +libs/property_map/identity_property_map.html +libs/property_map/iterator_property_map.html +libs/property_map/LvaluePropertyMap.html +libs/property_map/property_map.html +libs/property_map/ReadablePropertyMap.html +libs/property_map/ReadWritePropertyMap.html +libs/property_map/ref_property_map.html +libs/property_map/vector_property_map.html +libs/property_map/WritablePropertyMap.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/l_arr_disabled.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/scope_exit/example/world.cpp +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/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/test_delete_pointer.cpp +libs/serialization/test/test_diamond.cpp +libs/serialization/test/test_dll_simple.cpp +libs/serialization/test/test_no_rtti.cpp +libs/signals/example/doc_view.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/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/alert.gif +libs/spirit/classic/doc/theme/arrow.gif +libs/spirit/classic/doc/theme/bkd2.gif +libs/spirit/classic/doc/theme/bulb.gif +libs/spirit/classic/doc/theme/bullet.gif +libs/spirit/classic/doc/theme/closure1.png +libs/spirit/classic/doc/theme/error_handling.png +libs/spirit/classic/doc/theme/intro1.png +libs/spirit/classic/doc/theme/intro2.png +libs/spirit/classic/doc/theme/intro3.png +libs/spirit/classic/doc/theme/intro4.png +libs/spirit/classic/doc/theme/intro5.png +libs/spirit/classic/doc/theme/intro6.png +libs/spirit/classic/doc/theme/intro7.png +libs/spirit/classic/doc/theme/lambda.png +libs/spirit/classic/doc/theme/l_arr_disabled.gif +libs/spirit/classic/doc/theme/l_arr.gif +libs/spirit/classic/doc/theme/lens.gif +libs/spirit/classic/doc/theme/note.gif +libs/spirit/classic/doc/theme/r_arr_disabled.gif +libs/spirit/classic/doc/theme/r_arr.gif +libs/spirit/classic/doc/theme/scanner1.png +libs/spirit/classic/doc/theme/spirit.gif +libs/spirit/classic/doc/theme/style.css +libs/spirit/classic/doc/theme/subrule1.png +libs/spirit/classic/doc/theme/trees1.png +libs/spirit/classic/doc/theme/trees2.png +libs/spirit/classic/doc/theme/trees3.png +libs/spirit/classic/doc/theme/trees4.png +libs/spirit/classic/doc/theme/u_arr.gif +libs/spirit/classic/doc/trees.html +libs/spirit/classic/example/fundamental/ast_calc.cpp +libs/spirit/classic/example/fundamental/bind.cpp +libs/spirit/classic/example/fundamental/calc_debug.cpp +libs/spirit/classic/example/fundamental/calc_plain.cpp +libs/spirit/classic/example/fundamental/comments.cpp +libs/spirit/classic/example/fundamental/distinct/distinct_parser.cpp +libs/spirit/classic/example/fundamental/distinct/distinct_parser_dynamic.cpp +libs/spirit/classic/example/fundamental/error_handling.cpp +libs/spirit/classic/example/fundamental/file_parser.cpp +libs/spirit/classic/example/fundamental/full_calc.cpp +libs/spirit/classic/example/fundamental/functor_parser.cpp +libs/spirit/classic/example/fundamental/list_parser.cpp +libs/spirit/classic/example/fundamental/matching_tags.cpp +libs/spirit/classic/example/fundamental/no_actions.cpp +libs/spirit/classic/example/fundamental/number_list.cpp +libs/spirit/classic/example/fundamental/parser_context.cpp +libs/spirit/classic/example/fundamental/parse_tree_calc1.cpp +libs/spirit/classic/example/fundamental/phoenix_calc.cpp +libs/spirit/classic/example/fundamental/position_iterator/position_iterator.cpp +libs/spirit/classic/example/fundamental/refactoring.cpp +libs/spirit/classic/example/fundamental/regular_expression.cpp +libs/spirit/classic/example/fundamental/roman_numerals.cpp +libs/spirit/classic/example/fundamental/stuff_vector2.cpp +libs/spirit/classic/example/fundamental/stuff_vector.cpp +libs/spirit/classic/example/fundamental/subrule_calc.cpp +libs/spirit/classic/example/fundamental/sum.cpp +libs/spirit/classic/example/fundamental/thousand_separated.cpp +libs/spirit/classic/example/intermediate/lazy_parser.cpp +libs/spirit/classic/example/intermediate/parameters.cpp +libs/spirit/classic/example/techniques/multiple_scanners.cpp +libs/spirit/classic/example/techniques/nabialek.cpp +libs/spirit/classic/example/techniques/no_rules/no_rule1.cpp +libs/spirit/classic/example/techniques/no_rules/no_rule2.cpp +libs/spirit/classic/example/techniques/no_rules/no_rule3.cpp +libs/spirit/classic/example/techniques/typeof.cpp +libs/spirit/classic/index.html +libs/spirit/classic/phoenix/doc/place_holders.html +libs/spirit/classic/phoenix/index.html +libs/spirit/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/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/style.css +libs/test/index.html +libs/thread/doc/index.html +libs/timer/index.html +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_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_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/units/tutorial/tutorial_1.cpp +libs/unordered/doc/diagrams/buckets.png +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.38-1.38.0.orig/debian/NEWS.Debian +++ boost1.38-1.38.0/debian/NEWS.Debian @@ -0,0 +1,50 @@ +Boost 1.35.0-1 +-------------- + + * 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. + +Boost 1.34.0-1 +-------------- + +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". --- boost1.38-1.38.0.orig/debian/patches/sp_counted_base.patch +++ boost1.38-1.38.0/debian/patches/sp_counted_base.patch @@ -0,0 +1,13 @@ +Reported upstream as https://svn.boost.org/trac/boost/ticket/2525 + +--- boost1.37-1.37.0.orig/boost/detail/sp_counted_base.hpp ++++ boost1.37-1.37.0/boost/detail/sp_counted_base.hpp +@@ -46,7 +46,7 @@ + #elif defined( __GNUC__ ) && ( defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc ) ) + # include + +-#elif defined(__GNUC__) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 ) && !defined( __arm__ ) && !defined( __hppa ) && ( !defined( __INTEL_COMPILER ) || defined( __ia64__ ) ) ++#elif defined(__GNUC__) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 ) && !defined( __arm__ ) && !defined( __armel__ ) && !defined( __hppa ) && !defined( __hppa__ ) && !defined( __m68k__ ) && !defined( __sparc__ ) && ( !defined( __INTEL_COMPILER ) || defined( __ia64__ ) ) && ( defined( __sparcv8 ) || defined( __sparcv9 ) ) + # include + + #elif defined(__GNUC__) && ( defined( __sparcv9 ) || ( defined( __sparcv8 ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 402 ) ) ) --- boost1.38-1.38.0.orig/debian/patches/atomic_count.patch +++ boost1.38-1.38.0/debian/patches/atomic_count.patch @@ -0,0 +1,13 @@ +Reported upstream as https://svn.boost.org/trac/boost/ticket/2525 + +--- boost1.37-1.37.0.orig/boost/detail/atomic_count.hpp ++++ boost1.37-1.37.0/boost/detail/atomic_count.hpp +@@ -98,7 +98,7 @@ + #elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) + # include + +-#elif defined( __GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 ) && !defined( __arm__ ) && !defined( __hppa ) && ( !defined( __INTEL_COMPILER ) || defined( __ia64__ ) ) ++#elif defined( __GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 ) && !defined( __arm__ ) && !defined( __armel__ ) && !defined( __hppa ) && !defined( __hppa__ ) && !defined( __m68k__ ) && !defined( __sparc__ ) && ( !defined( __INTEL_COMPILER ) || defined( __ia64__ ) ) + # include + + #elif defined(__GLIBCPP__) || defined(__GLIBCXX__) --- boost1.38-1.38.0.orig/debian/patches/kfreebsd-jam.patch +++ boost1.38-1.38.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.38-1.38.0.orig/debian/patches/jam-wall-clean.patch +++ boost1.38-1.38.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.38-1.38.0.orig/debian/patches/library-naming.patch +++ boost1.38-1.38.0/debian/patches/library-naming.patch @@ -0,0 +1,37 @@ +The first chunk removes the toolset and boost version from the library +names. + +The second chunk removes a rule that creates an unversioned +hard link; e.g. foo.so --> foo-1_35.so.1.35.0. However, there is +also a rule that creates a softlink foo-1_35.so --> foo-1_35.so.1.35.0. + +After removing the boost version, both links are the same. +We keep the softlink. +--- upstream-boost-1.35.0/Jamroot 2008-03-25 15:47:24.000000000 -0500 ++++ boost-1.35.0/Jamroot 2008-04-13 19:19:07.000000000 -0500 +@@ -309,7 +309,7 @@ + if $(layout) = versioned + { + local result = [ common.format-name +- -$(BOOST_VERSION_TAG) ++ + -$(BUILD_ID) + : $(name) : $(type) : $(property-set) ] ; + +@@ -445,13 +445,9 @@ + return $(result) ; + } + +- generate stage-unversioned : stage-proper : +- @make-unversioned-links ; +- explicit stage-unversioned ; +- +- generate install-unversioned : install-proper : +- @make-unversioned-links ; +- explicit install-unversioned ; ++ # Create do-nothing aliases ++ alias stage-unversioned ; ++ alias install-unversioned ; + } + else + { --- boost1.38-1.38.0.orig/debian/patches/mpi-python.patch +++ boost1.38-1.38.0/debian/patches/mpi-python.patch @@ -0,0 +1,55 @@ +--- boost1.37-1.37.0.orig/libs/mpi/build/Jamfile.v2 ++++ boost1.37-1.37.0/libs/mpi/build/Jamfile.v2 +@@ -55,52 +55,6 @@ + + libraries += boost_mpi ; + +- if [ python.configured ] +- { +- lib boost_mpi_python +- : # Sources +- python/serialize.cpp +- : # Requirements +- boost_mpi +- /mpi//mpi [ mpi.extra-requirements ] +- /boost/python//boost_python +- shared:BOOST_MPI_DYN_LINK=1 +- shared:BOOST_MPI_PYTHON_DYN_LINK=1 +- shared:BOOST_PYTHON_DYN_LINK=1 +- BOOST_MPI_PYTHON_SOURCE=1 +- : # Default build +- shared +- : # Usage requirements +- /mpi//mpi [ mpi.extra-requirements ] +- ; +- libraries += boost_mpi_python ; +- +- python-extension mpi +- : # Sources +- python/collectives.cpp +- python/py_communicator.cpp +- python/datatypes.cpp +- python/documentation.cpp +- python/py_environment.cpp +- python/py_nonblocking.cpp +- python/py_exception.cpp +- python/module.cpp +- python/py_request.cpp +- python/skeleton_and_content.cpp +- python/status.cpp +- python/py_timer.cpp +- : # Requirements +- /boost/python//boost_python +- boost_mpi_python +- boost_mpi +- /mpi//mpi [ mpi.extra-requirements ] +- shared:BOOST_MPI_DYN_LINK=1 +- shared:BOOST_MPI_PYTHON_DYN_LINK=1 +- shared:BOOST_PYTHON_DYN_LINK=1 +- shared +- release +- ; +- } + } + else if ! ( --without-mpi in [ modules.peek : ARGV ] ) + { --- boost1.38-1.38.0.orig/debian/patches/function-template.patch +++ boost1.38-1.38.0/debian/patches/function-template.patch @@ -0,0 +1,17 @@ +Reported upstream as https://svn.boost.org/trac/boost/ticket/2469 +Fixed in upstream trunk as of 51745. + +--- boost1.37-1.37.0.orig/boost/function/function_template.hpp ++++ boost1.37-1.37.0/boost/function/function_template.hpp +@@ -950,10 +950,10 @@ + f.vtable->manager(f.functor, this->functor, + boost::detail::function::move_functor_tag); + f.vtable = 0; +-#if !defined(BOOST_NO_EXCEPTIONS) + } else { + clear(); + } ++#if !defined(BOOST_NO_EXCEPTIONS) + } catch (...) { + vtable = 0; + throw; --- boost1.38-1.38.0.orig/debian/patches/boost_python_translate_exception.patch +++ boost1.38-1.38.0/debian/patches/boost_python_translate_exception.patch @@ -0,0 +1,13 @@ +Taken from upstream Ticket 2582 +https://svn.boost.org/trac/boost/attachment/ticket/2582/boost_python_translate_exception.patch + +--- boost1.38-1.38.0.orig/boost/python/detail/translate_exception.hpp ++++ boost1.38-1.38.0/boost/python/detail/translate_exception.hpp +@@ -9,6 +9,7 @@ + + # include + # include ++# include + + # include + --- boost1.38-1.38.0.orig/debian/patches/endian.patch +++ boost1.38-1.38.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.38-1.38.0.orig/debian/patches/enum_with_duplicated_values.patch +++ boost1.38-1.38.0/debian/patches/enum_with_duplicated_values.patch @@ -0,0 +1,138 @@ +Fixed upstream at https://svn.boost.org/trac/boost/changeset/53660 + +Index: libs/python/test/enum.py +=================================================================== +--- boost/libs/python/test/enum.py (revision 36256) ++++ boost/libs/python/test/enum.py (revision 53660) +@@ -5,6 +5,6 @@ + >>> from enum_ext import * + +->>> identity(color.red) +-enum_ext.color.red ++>>> identity(color.red) # in case of duplicated enums it always take the last enum ++enum_ext.color.blood + + >>> identity(color.green) +@@ -14,6 +14,6 @@ + enum_ext.color.blue + +->>> identity(color(1)) +-enum_ext.color.red ++>>> identity(color(1)) # in case of duplicated enums it always take the last enum ++enum_ext.color.blood + + >>> identity(color(2)) +@@ -29,5 +29,5 @@ + + >>> identity(red) +-enum_ext.color.red ++enum_ext.color.blood + + >>> identity(green) +@@ -43,8 +43,16 @@ + >>> c = colorized() + >>> c.x +-enum_ext.color.red ++enum_ext.color.blood + >>> c.x = green + >>> c.x + enum_ext.color.green ++>>> red == blood ++True ++>>> red == green ++False ++>>> hash(red) == hash(blood) ++True ++>>> hash(red) == hash(green) ++False + ''' + +Index: libs/python/test/enum.cpp +=================================================================== +--- boost/libs/python/test/enum.cpp (revision 24614) ++++ boost/libs/python/test/enum.cpp (revision 53660) +@@ -13,5 +13,5 @@ + using namespace boost::python; + +-enum color { red = 1, green = 2, blue = 4 }; ++enum color { red = 1, green = 2, blue = 4, blood = 1 }; + + #if BOOST_WORKAROUND(__MWERKS__, <= 0x2407) +@@ -35,4 +35,5 @@ + .value("green", green) + .value("blue", blue) ++ .value("blood", blood) + .export_values() + ; +Index: libs/python/src/object/enum.cpp +=================================================================== +--- boost/libs/python/src/object/enum.cpp (revision 41521) ++++ boost/libs/python/src/object/enum.cpp (revision 53660) +@@ -15,5 +15,5 @@ + #include + +-namespace boost { namespace python { namespace objects { ++namespace boost { namespace python { namespace objects { + + struct enum_object +@@ -44,5 +44,5 @@ + if (name == 0) + return 0; +- ++ + return PyString_FromFormat("%s.%s.%s", mod, self_->ob_type->tp_name, name); + } +@@ -140,4 +140,5 @@ + d["__slots__"] = tuple(); + d["values"] = dict(); ++ d["names"] = dict(); + + object module_name = module_prefix(); +@@ -146,7 +147,7 @@ + if (doc) + d["__doc__"] = doc; +- ++ + object result = (object(metatype))(name, make_tuple(base), d); +- ++ + scope().attr(name) = result; + +@@ -168,5 +169,5 @@ + = const_cast( + converter::registry::lookup(id)); +- ++ + converters.m_class_object = downcast(this->ptr()); + converter::registry::insert(to_python, id); +@@ -187,21 +188,22 @@ + dict d = extract(this->attr("values"))(); + d[value] = x; +- ++ + // Set the name field in the new enum instanec + enum_object* p = downcast(x.ptr()); + Py_XDECREF(p->name); + p->name = incref(name.ptr()); ++ ++ dict names_dict = extract(this->attr("names"))(); ++ names_dict[x.attr("name")] = x; + } + + void enum_base::export_values() + { +- dict d = extract(this->attr("values"))(); +- list values = d.values(); ++ dict d = extract(this->attr("names"))(); ++ list items = d.items(); + scope current; +- +- for (unsigned i = 0, max = len(values); i < max; ++i) +- { +- api::setattr(current, object(values[i].attr("name")), values[i]); +- } ++ ++ for (unsigned i = 0, max = len(items); i < max; ++i) ++ api::setattr(current, items[i][0], items[i][1]); + } + --- boost1.38-1.38.0.orig/debian/patches/atomic_count_gcc.patch +++ boost1.38-1.38.0/debian/patches/atomic_count_gcc.patch @@ -0,0 +1,17 @@ +Reported upstream as https://svn.boost.org/trac/boost/ticket/2525 + +--- boost1.36-1.36.0.orig/boost/detail/atomic_count_gcc.hpp ++++ boost1.36-1.36.0/boost/detail/atomic_count_gcc.hpp +@@ -17,7 +17,11 @@ + // http://www.boost.org/LICENSE_1_0.txt) + // + +-#include ++#if defined( __GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 402 ) ++# include ++#else ++# include ++#endif + + namespace boost + { --- boost1.38-1.38.0.orig/debian/patches/generic_call_operator_support.patch +++ boost1.38-1.38.0/debian/patches/generic_call_operator_support.patch @@ -0,0 +1,162 @@ +Fixed upstream at https://svn.boost.org/trac/boost/changeset/47846 + +Index: boost/python/object_core.hpp +=================================================================== +--- boost/boost/python/object_core.hpp (revision 45918) ++++ boost/boost/python/object_core.hpp (revision 47846) +@@ -42,4 +42,10 @@ + + namespace boost { namespace python { ++ ++namespace detail ++{ ++ class kwds_proxy; ++ class args_proxy; ++} + + namespace converter +@@ -103,4 +109,9 @@ + # define BOOST_PP_ITERATION_PARAMS_1 (3, (1, BOOST_PYTHON_MAX_ARITY, )) + # include BOOST_PP_ITERATE() ++ ++ detail::args_proxy operator* () const; ++ object operator()(detail::args_proxy const &args) const; ++ object operator()(detail::args_proxy const &args, ++ detail::kwds_proxy const &kwds) const; + + // truth value testing +@@ -417,4 +428,60 @@ + // + ++namespace detail ++{ ++ ++class call_proxy ++{ ++public: ++ call_proxy(object target) : m_target(target) {} ++ operator object() const { return m_target;} ++ ++ private: ++ object m_target; ++}; ++ ++class kwds_proxy : public call_proxy ++{ ++public: ++ kwds_proxy(object o = object()) : call_proxy(o) {} ++}; ++class args_proxy : public call_proxy ++{ ++public: ++ args_proxy(object o) : call_proxy(o) {} ++ kwds_proxy operator* () const { return kwds_proxy(*this);} ++}; ++} ++ ++template ++detail::args_proxy api::object_operators::operator* () const ++{ ++ object_cref2 x = *static_cast(this); ++ return detail::args_proxy(x); ++} ++ ++template ++object api::object_operators::operator()(detail::args_proxy const &args) const ++{ ++ U const& self = *static_cast(this); ++ PyObject *result = PyObject_Call(get_managed_object(self, tag), ++ args.operator object().ptr(), ++ 0); ++ return object(detail::new_reference(result)); ++ ++} ++ ++template ++object api::object_operators::operator()(detail::args_proxy const &args, ++ detail::kwds_proxy const &kwds) const ++{ ++ U const& self = *static_cast(this); ++ PyObject *result = PyObject_Call(get_managed_object(self, tag), ++ args.operator object().ptr(), ++ kwds.operator object().ptr()); ++ return object(detail::new_reference(result)); ++ ++} ++ + inline object::object() + : object_base(python::incref(Py_None)) +Index: libs/python/test/object.cpp +=================================================================== +--- boost/libs/python/test/object.cpp (revision 45918) ++++ boost/libs/python/test/object.cpp (revision 47846) +@@ -187,4 +187,9 @@ + return s.slice(2,-1).slice(1,-1) == "lo, wor"; + } ++ ++object test_call(object c, object args, object kwds) ++{ ++ return c(*args, **kwds); ++} + + bool check_binary_operators() +@@ -378,4 +383,5 @@ + def("test_not_item", test_not_item); + ++ def("test_call", test_call); + def("check_binary_operators", check_binary_operators); + def("check_inplace", check_inplace); +Index: libs/python/test/object.py +=================================================================== +--- boost/libs/python/test/object.py (revision 45918) ++++ boost/libs/python/test/object.py (revision 47846) +@@ -135,5 +135,10 @@ + Operators + +- ++>>> def print_args(*args, **kwds): ++... print args, kwds ++>>> test_call(print_args, (0, 1, 2, 3), {'a':'A'}) ++(0, 1, 2, 3) {'a': 'A'} ++ ++ + >>> assert check_binary_operators() + +Index: libs/python/doc/v2/object.html +=================================================================== +--- boost/libs/python/doc/v2/object.html (revision 45918) ++++ boost/libs/python/doc/v2/object.html (revision 47846) +@@ -656,4 +656,9 @@ + object operator()(A0 const&, A1 const&,...An const&) const; + ++ detail::args_proxy operator* () const; ++ object operator()(detail::args_proxy const &args) const; ++ object operator()(detail::args_proxy const &args, ++ detail::kwds_proxy const &kwds) const; ++ + // truth value testing + // +@@ -705,4 +710,23 @@ + a2,...aN) + ++ ++
++object operator()(detail::args_proxy const &args) const; 
++
++
++
Effects: ++ call object with arguments given by the tuple args
++
++
++object operator()(detail::args_proxy const &args, 
++                  detail::kwds_proxy const &kwds) const; 
++
++
++
Effects: ++ call object with arguments given by the tuple args, and named ++ arguments given by the dictionary kwds
++
++ ++ +
+ operator bool_type() const;
--- boost1.38-1.38.0.orig/debian/patches/add-disable-long-double.patch
+++ boost1.38-1.38.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.38-1.38.0.orig/debian/patches/date_time_date_formatting_hpp.patch
+++ boost1.38-1.38.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.38-1.38.0.orig/debian/patches/series
+++ boost1.38-1.38.0/debian/patches/series
@@ -0,0 +1,15 @@
+function-template.patch
+atomic_count.patch
+atomic_count_gcc.patch
+sp_counted_base.patch
+endian.patch
+kfreebsd-jam.patch
+python2.5-elementtree.patch
+library-naming.patch
+date_time_date_formatting_hpp.patch
+mpi-python.patch
+jam-wall-clean.patch
+boost_python_translate_exception.patch
+generic_call_operator_support.patch
+enum_with_duplicated_values.patch
+boost_python_unsigned_converter_fix.patch
--- boost1.38-1.38.0.orig/debian/patches/boost_python_unsigned_converter_fix.patch
+++ boost1.38-1.38.0/debian/patches/boost_python_unsigned_converter_fix.patch
@@ -0,0 +1,32 @@
+Reported upstream as https://svn.boost.org/trac/boost/ticket/3189
+
+Index: libs/python/src/converter/builtin_converters.cpp
+===================================================================
+--- boost/libs/python/src/converter/builtin_converters.cpp	(revision 53980)
++++ boost/libs/python/src/converter/builtin_converters.cpp	(working copy)
+@@ -155,10 +155,21 @@
+   {
+       static T extract(PyObject* intermediate)
+       {
+-          return numeric_cast(
+-              PyLong_Check(intermediate)
+-              ? PyLong_AsUnsignedLong(intermediate)
+-              : PyInt_AS_LONG(intermediate));
++          if (PyLong_Check(intermediate)) {
++              unsigned long result = PyLong_AsUnsignedLong(intermediate);
++              if (PyErr_Occurred())
++                  throw_error_already_set();
++              return numeric_cast(result);
++          } else {
++              long result = PyInt_AS_LONG(intermediate);
++              if (PyErr_Occurred())
++                  throw_error_already_set();
++              if (result < 0) {
++                  PyErr_SetString(PyExc_ValueError, "argument must not be negative");
++                  throw_error_already_set();
++              }
++              return numeric_cast(result);
++          }
+       }
+   };
+ 
--- boost1.38-1.38.0.orig/debian/patches/python2.5-elementtree.patch
+++ boost1.38-1.38.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.38-1.38.0.orig/debian/patches/math_tools_config.patch
+++ boost1.38-1.38.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