Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82403 - in sandbox/SOC/2007/visualization/libs/svg_plot: doc example
From: pbristow_at_[hidden]
Date: 2013-01-08 09:59:04


Author: pbristow
Date: 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
New Revision: 82403
URL: http://svn.boost.org/trac/boost/changeset/82403

Log:
docs revised and re-built.
Text files modified:
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/2d_tutorial.qbk | 4
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/Jamfile.v2 | 1
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/behavior_tutorial.qbk | 28 +
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/colors.qbk | 4
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/demo_1d_values.qbk | 4
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/doxywarnings.log | 501 ++++++++++++++++++++++++++++++++++++++++
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/inkscape.qbk | 12
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/rationale.qbk | 96 +++++++
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/svg_plot.qbk | 9
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/svg_tutorial.qbk | 2
   sandbox/SOC/2007/visualization/libs/svg_plot/example/Jamfile.v2 | 2
   sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_1d_uncertainty.cpp | 6
   sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_2d_limits.cpp | 2
   sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_2d_uncertainty.cpp | 4
   14 files changed, 632 insertions(+), 43 deletions(-)

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/2d_tutorial.qbk
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/2d_tutorial.qbk (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/2d_tutorial.qbk 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -228,7 +228,7 @@
 
 [$images/2d_y_grid.svg]
 
-The source of this examples is at [@../../example\2d_y_grid.cpp]
+The source of this examples is at [@../../example/2d_y_grid.cpp]
 
 Similarly you can have horizontal and/or vertical lines:
 
@@ -259,7 +259,7 @@
 [$images/2d_area_fill_1.svg]
 [$images/2d_area_fill_2.svg]
 
-from source at [@../../example\2d_area_fill.cpp]
+from source at [@../../example/2d_area_fill.cpp]
 
 [h4 Curve Interpolation]
 

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/Jamfile.v2
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/Jamfile.v2 (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/Jamfile.v2 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -94,6 +94,7 @@
 doxygen autodoc
   :
     [ glob ../../../boost/svg_plot/*.hpp ]
+ [ glob ../../../../quan/boost/quan/*.hpp ]
     # [ glob ../../../boost/svg_plot/detail/*.hpp ]
   :
     #<doxygen:param>INPUT="filename1 directoryname2" # Separate with spaces.

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/behavior_tutorial.qbk
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/behavior_tutorial.qbk (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/behavior_tutorial.qbk 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -1,7 +1,8 @@
 [section:behavior_limits Showing data values at Numerical Limits]
 
 All limits that are dealt with are double precision floating-point limits.
-Data values that are 'at limits' are detected when data is added to the plot by the call to the `plot()` method.
+Data values that are 'at limits' are detected
+when data is added to the plot by the call to the `plot()` method.
 
 Currently, the line interpolation algorithms do not take limits into account,
 so behavior may be incorrect for such plots as `1 / x`.
@@ -13,48 +14,51 @@
 
    my_plot.limit_color(red).limit_fill_color(green);
 
+showing an inverted down-pointing cone with a red outline and a green fill.
+
 [h4 NaN]
 Any double precision floating-point numbers that return a nonzero value for the
-function `_isnan(double)` is considered to be a NaN value. When plotted, the
-number will appear in the user-defined coordinates as 0.
+function `isnan(double)` is considered to be a ['NaN] or ['NotANumber] value.
+When plotted, the number will appear in the user-defined coordinates as 0 or 0,0.
 
 [h4 Infinity]
 
 Any double precision floating point number that is equal to either of the
-following is considered to be Infinity:
+following is considered to be ['infinity]:
 
   std::numeric_limits<double>::max()
   std::numeric_limits<double>::infinity()
 
-When plotted, these values will appear at the *top* of your plot window.
+When plotted, these values will appear at the [*top] of your plot window.
 If the plot window is not turned on,
 these points will appear at the top of the image.
 
 [h4 Negative Infinity]
 
 Any double precision floating point number that is equal to either of the
-following is considered to be Negative Infinity:
+following is considered to be ['negative infinity]:
 
   std::numeric_limits<double>::min()
   -std::numeric_limits<double>::infinity()
   std::numeric_limits<double>::denorm_min()
 
-When plotted, these values will appear at the *bottom* of your plot window.
+When plotted, these values will appear at the [*bottom] of your plot window.
 If the plot window is not turned on,
 these points will appear at the bottom of the image.
 
-Here is an example of showing values at numeric limits:
-[$images/2d_limit.svg]
+Here are examples of showing values at numeric limits:
+[$images/demo_2d_limits.svg]
+[$images/demo_1d_limits.svg]
 
 See also examples of limits in 1-D and 2-D plots.
-[@../../example/demo_1d_limits.cpp]
-[@../../example/demo_2d_limits.cpp]
+[@../../example/demo_1d_limits.cpp demo_1d_limits.cpp]
+[@../../example/demo_2d_limits.cpp demo_2d_limits.cpp]
 
 [endsect] [/section:numerical_limits]
 
 
 [/ behaviour_tutorial.qbk
- Copyright 2008 Jake Voytko and Paul A. Bristow.
+ Copyright 2008, 2012 Jake Voytko and Paul A. Bristow.
   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).

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/colors.qbk
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/colors.qbk (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/colors.qbk 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -75,12 +75,12 @@
 [heading Colors Internals and Rationale]
 
 Color constants are defined in an enum, `svg_color_constant`, in alphabetical order at
-[@..\..\..\..\boost\svg_plot\svg_color.hpp color constants].
+[@../../../../boost/svg_plot/svg_color.hpp color constants].
 This facilitates quick lookup of their RGB values from an array. Anywhere
 that a `svg_color` can be used, a `svg_color_constant` can be used, as the
 conversion is implicit.
 
-All color information is stored in RGB format as three 'unsigned char' in a `svg_color` struct.
+All color information is stored in RGB format as three `unsigned char` in a `svg_color` struct.
 The rationale for storing information in RGB format is that it is precise,
 and is always representable the exactly the same way.
 Storing as a floating-point percent or fraction

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/demo_1d_values.qbk
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/demo_1d_values.qbk (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/demo_1d_values.qbk 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -16,12 +16,12 @@
 [demo_1d_limits_2]
 [demo_1d_limits_output]
 
-[$images/demo_1d_limits.svg]
+[$images/demo_1d_limits.svg demo_1d_limits.svg]
 
 [endsect] [/section:demo_1d_values 1-D Data Values Examples]
 
 [/ demo_1d_values.qbk
- Copyright 2008 Jake Voytko and Paul A. Bristow.
+ Copyright 2008, 2012 Jake Voytko and Paul A. Bristow.
   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).

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/doxywarnings.log
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/doxywarnings.log (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/doxywarnings.log 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -0,0 +1,501 @@
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/uncertain.hpp:84: warning: Compound boost::svg::unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:50: warning: Compound boost::type_erasure::concept_interface< base_and_derived< T, U >, Base, U > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:430: warning: Compound setAllUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:63: warning: Compound tabs is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas2.hpp:17: warning: Compound meas2 is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:487: warning: Compound setUncWidth is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:477: warning: Compound resetMaskedUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:499: warning: Compound setScale is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:439: warning: Compound setUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:463: warning: Compound resetUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:39: warning: Compound base_and_derived is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:453: warning: Compound setMaskedUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:419: warning: Compound showUncTypes is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:98: warning: Compound boost::type_erasure::ostreamable< Os, std::pair< T1, T2 > > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:70: warning: Compound unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:411: warning: Compound showUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:2078: warning: Compound lessAbs is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:54: warning: Compound spaces is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:72: warning: Compound stars is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:92: warning: Compound setupperbase is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:82: warning: Compound chars is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:511: warning: Compound setSigDigits is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:24: warning: found more than one \mainpage comment block! Skipping this block.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:14: warning: found more than one \mainpage comment block! Skipping this block.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:26: warning: Member uncun (typedef) of file meas.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:103: warning: Member operator<<(ostream &os, const Meas &m) (function) of file meas.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:104: warning: Member operator>>(istream &is, Meas &m) (function) of file meas.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas2.hpp:45: warning: Member operator<<(ostream &os, const meas2 &m) (function) of file meas2.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas2.hpp:46: warning: Member operator>>(istream &is, meas2 &m) (function) of file meas2.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/pair_io.hpp:16: warning: Member operator<<(std::basic_ostream< charT, traits > &os, const std::pair< T1, T2 > &p) (function) of file pair_io.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/pair_io.hpp:23: warning: Member operator<<(std::basic_ostream< charT, traits > &os, const std::pair< double, double > &p) (function) of file pair_io.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:979: warning: Member distribution_type (enumeration) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:133: warning: Member BOOST_STATIC_ASSERT(std::numeric_limits< double >::is_iec559) (function) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:137: warning: Member BOOST_STATIC_ASSERT(std::numeric_limits< double >::is_specialized) (function) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:177: warning: Member round_ms(FPT v, int m) (function) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:145: warning: Member maxdigits10 (variable) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:1314: warning: Member oneDivSqrtSix (variable) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:1315: warning: Member oneDivTwoSqrtSix (variable) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:707: warning: Member scaled (variable) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:1312: warning: Member sqrt_2 (variable) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:1316: warning: Member sqrt_3 (variable) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/rounding.hpp:1313: warning: Member sqrt_6 (variable) of file rounding.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:279: warning: Member findAnyUnit(const string, unsigned int &, unsigned int &, unsigned int &) (function) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:274: warning: Member findUnit(const string, const unit *, unsigned int &, unsigned int &) (function) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:268: warning: Member showAllNonSIunits(const unit *, ostream &) (function) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:263: warning: Member showAllUnits(const unit *, ostream &) (function) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:266: warning: Member showNonSIunits(const unit *, ostream &) (function) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:264: warning: Member showSIunit(const unit *, ostream &) (function) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:265: warning: Member showSIunits(const unit *, ostream &) (function) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:190: warning: Member ampCurrentUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:191: warning: Member ampCurrentUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:241: warning: Member ampHourChargeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:242: warning: Member ampHourChargeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:221: warning: Member candelaLumintensityUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:222: warning: Member candelaLumintensityUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:202: warning: Member celsiusTemperatureUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:246: warning: Member charge (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:243: warning: Member chargeToSIfactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:238: warning: Member chargeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:244: warning: Member chargeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:245: warning: Member chargeUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:239: warning: Member coulombChargeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:240: warning: Member coulombChargeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:201: warning: Member cTemperatureUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:195: warning: Member current (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:192: warning: Member currentToSIfactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:189: warning: Member currentUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:193: warning: Member currentUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:194: warning: Member currentUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:134: warning: Member cwtMassUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:135: warning: Member cwtMassUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:174: warning: Member dayTimeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:175: warning: Member dayTimeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:123: warning: Member dimlessNoUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:124: warning: Member dimlessUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:204: warning: Member fahrenheitTemperatureUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:153: warning: Member feetLengthUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:154: warning: Member feetLengthUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:180: warning: Member fortnightTimeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:181: warning: Member fortnightTimeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:235: warning: Member freq (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:232: warning: Member freqToSIfactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:229: warning: Member freqUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:233: warning: Member freqUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:234: warning: Member freqUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:203: warning: Member fTemperatureUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:130: warning: Member gramMassUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:131: warning: Member gramMassUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:230: warning: Member hertzFreqUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:231: warning: Member hertzFreqUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:172: warning: Member hourTimeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:173: warning: Member hourTimeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:155: warning: Member inchLengthUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:156: warning: Member inchLengthUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:200: warning: Member kelvinTemperatureUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:199: warning: Member kTemperatureUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:136: warning: Member lbMassUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:137: warning: Member lbMassUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:162: warning: Member length (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:159: warning: Member lengthToSIfactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:146: warning: Member lengthUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:160: warning: Member lengthUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:161: warning: Member lengthUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:226: warning: Member lumintensity (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:223: warning: Member lumintensityToSIfactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:220: warning: Member lumintensityUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:224: warning: Member lumintensityUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:225: warning: Member lumintensityUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:143: warning: Member mass (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:142: warning: Member massToSIfactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:129: warning: Member massUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:140: warning: Member massUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:141: warning: Member massUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:41: warning: Member maxPowerTen (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:55: warning: Member maxPowerTens (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:52: warning: Member maxRounds (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:147: warning: Member meterLengthUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:148: warning: Member meterLengthUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:149: warning: Member mileLengthUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:150: warning: Member mileLengthUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:170: warning: Member minuteTimeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:171: warning: Member minuteTimeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:212: warning: Member molSubstanceUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:213: warning: Member molSubstanceUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:176: warning: Member monthTimeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:177: warning: Member monthTimeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:39: warning: Member notOK (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:112: warning: Member noUnit (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:110: warning: Member noUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:111: warning: Member noUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:125: warning: Member NoUnitsFactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:138: warning: Member ozMassUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:139: warning: Member ozMassUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:119: warning: Member perBillionUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:120: warning: Member perBillionUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:113: warning: Member perCentUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:114: warning: Member perCentUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:115: warning: Member perMilleUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:116: warning: Member perMilleUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:117: warning: Member perMillionUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:118: warning: Member perMillionUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:121: warning: Member perTrillionUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:122: warning: Member perTrillionUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:157: warning: Member pointLengthUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:158: warning: Member pointLengthUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:50: warning: Member powersOfTen[maxPowerTen+1+maxPowerTen] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:53: warning: Member rounds[maxRounds] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:166: warning: Member secondTimeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:167: warning: Member secondTimeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:61: warning: Member SImaxPowers (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:56: warning: Member SImaxPowerTen (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:58: warning: Member SIminPowerTen (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:59: warning: Member SIprefixes[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:62: warning: Member SIprefixesLength (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:60: warning: Member SIsymbols[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:217: warning: Member substance (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:214: warning: Member substanceToSIfactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:211: warning: Member substanceUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:215: warning: Member substanceUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:216: warning: Member substanceUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:208: warning: Member temperature (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:205: warning: Member temperatureToSIfactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:198: warning: Member temperatureUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:206: warning: Member temperatureUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:207: warning: Member temperatureUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:185: warning: Member Time (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:182: warning: Member timeToSIfactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:165: warning: Member timeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:183: warning: Member timeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:184: warning: Member timeUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:132: warning: Member tonMassUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:133: warning: Member tonMassUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:260: warning: Member unitps[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:259: warning: Member unitsCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:250: warning: Member unknownCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:251: warning: Member unknownunit[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:256: warning: Member unknownUnit (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:249: warning: Member unknownUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:253: warning: Member unknownUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:252: warning: Member unknownUnitsCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:254: warning: Member unknownUnitsCounts[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:255: warning: Member unknownUnitsFactors[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:151: warning: Member yardLengthUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:152: warning: Member yardLengthUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:178: warning: Member yearTimeUnitCount (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:179: warning: Member yearTimeUnits[] (variable) of file si_units.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:151: warning: Member uncun (typedef) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:2066: warning: Member abs(const Type &a) (function) of namespace std is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:2103: warning: Member autoprefix_norm(const unc< false > &arg) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:131: warning: Member BOOST_STATIC_ASSERT(std::numeric_limits< double >::is_iec559) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:185: warning: Member cube(const Type &a) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:331: warning: Member noautoscale(std::ios_base &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:387: warning: Member operator<<(std::ostream, const setAllUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:389: warning: Member operator<<(std::ostream, const setUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:391: warning: Member operator<<(std::ostream, const setMaskedUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:393: warning: Member operator<<(std::ostream, const resetUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:395: warning: Member operator<<(std::ostream, const resetMaskedUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:397: warning: Member operator<<(std::ostream, const setUncWidth &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:399: warning: Member operator<<(std::ostream, const setScale &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:401: warning: Member operator<<(std::ostream, const setUncSigDigits &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:403: warning: Member operator<<(std::ostream, const setRoundingLoss &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:404: warning: Member operator<<(std::ostream, const setConfidence &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:405: warning: Member operator<<(std::ostream, const setSigDigits &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:388: warning: Member operator>>(std::istream, const setAllUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:390: warning: Member operator>>(std::istream, const setUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:392: warning: Member operator>>(std::istream, const setMaskedUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:394: warning: Member operator>>(std::istream, const resetUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:396: warning: Member operator>>(std::istream, const resetMaskedUncFlags &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:398: warning: Member operator>>(std::istream, const setUncWidth &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:400: warning: Member operator>>(std::istream, const setScale &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:402: warning: Member operator>>(std::istream, const setUncSigDigits &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:406: warning: Member operator>>(std::istream, const setSigDigits &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:316: warning: Member outFpClass(double, std::ostream &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:139: warning: Member outIosFlags(long, std::ostream &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:408: warning: Member outUncFlags(long uncflags, std::ostream) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:140: warning: Member outUncTypes(unsigned short int, std::ostream &) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:234: warning: Member outUncValues(std::ostream &os, std::ostream &log) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:235: warning: Member setUncDefaults(std::ios_base &os) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:184: warning: Member sqr(const Type &a) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:197: warning: Member sqrtSumSqrs(const Type &a, const Type &b) (function) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:280: warning: Member DEG_FREE_DEF (variable) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:279: warning: Member UNC_DEF (variable) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:282: warning: Member uncTypeWords[] (variable) of file unc.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:50: warning: Member confidenceIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:54: warning: Member indexID (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:55: warning: Member isIndexed (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:40: warning: Member oldScaleIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:34: warning: Member oldSigDigitsIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:32: warning: Member oldUncFlagsIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:44: warning: Member oldUncSetWidthIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:38: warning: Member oldUncSigDigitsIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:46: warning: Member oldUncUsedIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:43: warning: Member oldUncWidthIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:48: warning: Member oldWidthIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:49: warning: Member roundingLossIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:39: warning: Member scaleIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:41: warning: Member setScaleIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:35: warning: Member setSigDigitsIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:37: warning: Member setUncSigDigitsIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:33: warning: Member sigDigitsIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:52: warning: Member topIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:31: warning: Member uncFlagsIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:36: warning: Member uncSigDigitsIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:42: warning: Member uncWidthIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:45: warning: Member usedIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:47: warning: Member widthIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc_init.hpp:29: warning: Member zeroIndex (variable) of file unc_init.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:31: warning: Member unc_types (enumeration) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:20: warning: Member oldScaleIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:12: warning: Member oldSigDigitsIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:16: warning: Member oldStdDevSigDigitsIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:9: warning: Member oldUncFlagsIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:24: warning: Member oldUncSetWidthIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:26: warning: Member oldUncUsedIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:23: warning: Member oldUncWidthIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:28: warning: Member oldWidthIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:17: warning: Member ScaleIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:18: warning: Member setScaleIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:11: warning: Member setSigDigitsIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:10: warning: Member sigDigitsIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:14: warning: Member stdDevSigDigitsIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:7: warning: Member uncFlagsIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:21: warning: Member uncWidthIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:25: warning: Member usedIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/uncdata.hpp:27: warning: Member widthIndex (variable) of file uncdata.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:102: warning: Member outFpClass(double value, std::ostream &os) (function) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:101: warning: Member outIosFlags(long flags, std::ostream &os) (function) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:104: warning: Member outIOstates(std::ios_base::iostate rdstate=std::cout.rdstate(), std::ostream &os=std::cerr, const char *term=". ") (function) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:114: warning: Member showformat(std::ostream &os) (function) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:111: warning: Member showiostate(std::ostream &os) (function) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:40: warning: Member bell (variable) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:36: warning: Member nl (variable) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:39: warning: Member sp (variable) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:38: warning: Member space (variable) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:37: warning: Member tab (variable) of file xiostream.hpp is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/uncertain.hpp:67: warning: Member uncun (typedef) of namespace boost::svg is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/uncertain.hpp:278: warning: Member operator<<(std::ostream &os, const std::pair< unc< false >, unc< false > > &u) (function) of namespace boost::svg is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:147: warning: Member iterator_type (typedef) of class abstract_printer is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:146: warning: Member ostream_type (typedef) of class abstract_printer is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:143: warning: Member requirements (typedef) of class abstract_printer is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:149: warning: Member do_print(iterator_type first, iterator_type last, ostream_type os) const =0 (function) of class abstract_printer is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:42: warning: Member apply(U &arg) (function) of class base_and_derived is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:85: warning: Member chars(int, char) (function) of class chars is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:147: warning: Member iterator_type (typedef) of class abstract_printer<> is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:146: warning: Member ostream_type (typedef) of class abstract_printer<> is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:143: warning: Member requirements (typedef) of class abstract_printer<> is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:198: warning: Member do_print(iterator_type first, iterator_type last, ostream_type os) const (function) of class decor_printer is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:2080: warning: Member operator()(const Type &a, const Type &b) const (function) of class lessAbs is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:50: warning: Member abs(const Meas &rhs) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:51: warning: Member abs(Meas &rhs) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1875: warning: Member degFree(void) const (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1873: warning: Member deviation(void) const (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1871: warning: Member mean(void) const (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:39: warning: Member Meas(double const d=0.) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:43: warning: Member Meas(uncun u, string id="", boost::posix_time::ptime ti=(boost::posix_time::not_a_date_time), int o=-1) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:45: warning: Member Meas(const Meas &) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1022: warning: Member operator value_type() const (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:54: warning: Member operator!=(const Meas &p) const (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1176: warning: Member operator!=(const unc< is_correlated > &x) const (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1071: warning: Member operator*=(const unc< is_correlated > &ud) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1095: warning: Member operator*=(const double &a) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:58: warning: Member operator+(const Meas &) const (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:915: warning: Member operator++(void) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:921: warning: Member operator++(int) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:984: warning: Member operator+=(const unc< is_correlated > &ud) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1027: warning: Member operator+=(const double &a) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:62: warning: Member operator-(void) const (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:68: warning: Member operator-(void) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:918: warning: Member operator--(void) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:928: warning: Member operator--(int) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1036: warning: Member operator-=(const unc< is_correlated > &ud) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1062: warning: Member operator-=(const double &a) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1105: warning: Member operator/=(const unc< is_correlated > &ud) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:55: warning: Member operator<(const Meas &rhs) const (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1182: warning: Member operator<(const unc< is_correlated > &x) const (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:53: warning: Member operator==(const Meas &p) const (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1170: warning: Member operator==(const unc< is_correlated > &x) const (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:56: warning: Member operator>(const Meas &rhs) const (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:700: warning: Member types(short unsigned int type) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1877: warning: Member uncFlags(void) const (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:81: warning: Member earlier(const Meas &l, const Meas &r) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:84: warning: Member equal_toUnc(const Meas &l, const Meas &r) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1990: warning: Member equalU(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1997: warning: Member equalU2(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:83: warning: Member greater2U(const Meas &l, const Meas &r) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:82: warning: Member greaterU(const Meas &l, const Meas &r) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:77: warning: Member less(const Meas &l, const Meas &r) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:79: warning: Member less2U(const Meas &l, const Meas &r) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:85: warning: Member lessAbsM(const Meas &l, const Meas &r) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:78: warning: Member lessU(const Meas &l, const Meas &r) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1935: warning: Member lessU(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1960: warning: Member lessU2(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1984: warning: Member moreU(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc< false > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:80: warning: Member precedes(const Meas &l, const Meas &r) (function) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:89: warning: Member id_ (variable) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:98: warning: Member order_ (variable) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas.hpp:97: warning: Member time_ (variable) of class Meas is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas2.hpp:23: warning: Member meas2(uncun ux, uncun uy, string id="", boost::posix_time::ptime ti=(boost::posix_time::not_a_date_time), int o=-1) (function) of class meas2 is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas2.hpp:37: warning: Member m_id (variable) of class meas2 is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas2.hpp:39: warning: Member m_order (variable) of class meas2 is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas2.hpp:41: warning: Member m_time (variable) of class meas2 is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas2.hpp:28: warning: Member m_uncx (variable) of class meas2 is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/meas2.hpp:29: warning: Member m_uncy (variable) of class meas2 is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:481: warning: Member resetMaskedUncFlags(int, int) (function) of class resetMaskedUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:482: warning: Member flags (variable) of class resetMaskedUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:483: warning: Member mask (variable) of class resetMaskedUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:469: warning: Member resetUncFlags(int) (function) of class resetUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:470: warning: Member flags (variable) of class resetUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:434: warning: Member setAllUncFlags(int) (function) of class setAllUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:435: warning: Member flags (variable) of class setAllUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:566: warning: Member setConfidence(double) (function) of class setConfidence is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:569: warning: Member confidence_ (variable) of class setConfidence is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:457: warning: Member setMaskedUncFlags(int, int) (function) of class setMaskedUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:458: warning: Member flags (variable) of class setMaskedUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:459: warning: Member mask (variable) of class setMaskedUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:552: warning: Member setRoundingLoss(double) (function) of class setRoundingLoss is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:555: warning: Member roundingloss_ (variable) of class setRoundingLoss is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:504: warning: Member setScale(int) (function) of class setScale is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:505: warning: Member scale (variable) of class setScale is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:515: warning: Member setSigDigits(int) (function) of class setSigDigits is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:517: warning: Member sigDigits_ (variable) of class setSigDigits is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:445: warning: Member setUncFlags(int) (function) of class setUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:446: warning: Member flags (variable) of class setUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:538: warning: Member setUncSigDigits(int) (function) of class setUncSigDigits is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:541: warning: Member uncSigDigits_ (variable) of class setUncSigDigits is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:492: warning: Member setUncWidth(int) (function) of class setUncWidth is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:493: warning: Member uncWidth (variable) of class setUncWidth is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:96: warning: Member setupperbase(int) (function) of class setupperbase is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:414: warning: Member showUncFlags(unsigned short int) (function) of class showUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:415: warning: Member flags (variable) of class showUncFlags is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:423: warning: Member showUncTypes(unsigned short int) (function) of class showUncTypes is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:424: warning: Member types (variable) of class showUncTypes is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:57: warning: Member spaces(int) (function) of class spaces is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:75: warning: Member stars(int) (function) of class stars is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:77: warning: Member num (variable) of class stars is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/xiostream.hpp:66: warning: Member tabs(int) (function) of class tabs is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1875: warning: Member degFree(void) const (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1873: warning: Member deviation(void) const (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1871: warning: Member mean(void) const (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1022: warning: Member operator value_type() const (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1176: warning: Member operator!=(const unc< is_correlated > &x) const (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1071: warning: Member operator*=(const unc< is_correlated > &ud) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1095: warning: Member operator*=(const double &a) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:915: warning: Member operator++(void) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:921: warning: Member operator++(int) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:984: warning: Member operator+=(const unc< is_correlated > &ud) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1027: warning: Member operator+=(const double &a) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:866: warning: Member operator-(void) const (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:918: warning: Member operator--(void) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:928: warning: Member operator--(int) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1036: warning: Member operator-=(const unc< is_correlated > &ud) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1062: warning: Member operator-=(const double &a) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1105: warning: Member operator/=(const unc< is_correlated > &ud) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1182: warning: Member operator<(const unc< is_correlated > &x) const (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1170: warning: Member operator==(const unc< is_correlated > &x) const (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:700: warning: Member types(short unsigned int type) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:841: warning: Member unc(const unc &ud) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1877: warning: Member uncFlags(void) const (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1990: warning: Member equalU(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1997: warning: Member equalU2(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1935: warning: Member lessU(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1960: warning: Member lessU2(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1984: warning: Member moreU(const unc< is_correlated > &l, const unc< is_correlated > &r) (function) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1607: warning: Member abs(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1735: warning: Member acos(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1728: warning: Member asin(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1745: warning: Member atan(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1753: warning: Member atan2(const unc< is_correlated > &arg1, const unc< is_correlated > &arg2) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1571: warning: Member ceil(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1710: warning: Member cos(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1816: warning: Member cosh(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1777: warning: Member exp(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1589: warning: Member fabs(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1580: warning: Member floor(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1655: warning: Member fmod(const unc< is_correlated > &arg, const unc< is_correlated > &divisor) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1646: warning: Member frexp(unc< is_correlated > arg, int *intarg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1627: warning: Member ldexp(unc< is_correlated > arg, int intarg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1787: warning: Member log(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1797: warning: Member log10(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1638: warning: Member modf(unc< is_correlated > arg, double *intpart) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:937: warning: Member operator*(unc< is_correlated > a, const unc< is_correlated > &b) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:944: warning: Member operator*(unc< is_correlated > a, const double &b) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:950: warning: Member operator*(const double &b, unc< is_correlated > a) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:877: warning: Member operator+(unc< is_correlated > a, const unc< is_correlated > &b) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:883: warning: Member operator+(unc< is_correlated > a, const double &b) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:889: warning: Member operator+(const double &b, unc< is_correlated > a) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:895: warning: Member operator-(unc< is_correlated > a, const unc< is_correlated > &b) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:901: warning: Member operator-(unc< is_correlated > a, const double &b) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:907: warning: Member operator-(const double &b, unc< is_correlated > a) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:956: warning: Member operator/(unc< is_correlated > a, const unc< is_correlated > &b) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:962: warning: Member operator/(unc< is_correlated > a, const double &b) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:968: warning: Member operator/(const double &b, unc< is_correlated > a) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1557: warning: Member operator>>(std::istream &is, unc< is_correlated > &ud) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1836: warning: Member pow(const unc< is_correlated > &arg1, const unc< is_correlated > &arg2) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1883: warning: Member PropagateUncertaintiesBySlope(double(*certain_func)(double), const unc< is_correlated > &arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1900: warning: Member PropagateUncertaintiesBySlope(double(*certain_func)(double, double), const unc< is_correlated > &arg1, const unc< is_correlated > &arg2) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1699: warning: Member sin(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1809: warning: Member sinh(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1687: warning: Member sqrt(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1720: warning: Member tan(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/unc.hpp:1826: warning: Member tanh(unc< is_correlated > arg) (friend) of class unc is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:93: warning: Member SIunitAbbrev (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:90: warning: Member SIunitNames (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:80: warning: Member unitAbbrevCount (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:89: warning: Member unitLengths (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:94: warning: Member unitNames (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:81: warning: Member unitNamesCount (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:72: warning: Member unitOf (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:78: warning: Member unitSINameCount (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:84: warning: Member unitsNamesCount (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/si_units.hpp:97: warning: Member unitToSIfactors (variable) of class unit is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/uncertain.hpp:67: warning: Member uncun (typedef) of namespace boost::svg is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/uncertain.hpp:278: warning: Member operator<<(std::ostream &os, const std::pair< unc< false >, unc< false > > &u) (function) of namespace boost::svg is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:290: warning: Member plot(const T &container, const std::string &title="") (function) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:292: warning: Member plot(const T &begin, const T &end, const std::string &title="") (function) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:295: warning: Member plot(const T &container, const std::string &title="", U functor=boost::svg::detail::double_1d_convert()) (function) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:297: warning: Member plot(const T &begin, const T &end, const std::string &title="", U functor=boost::svg::detail::double_1d_convert()) (function) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:286: warning: Member write(std::ostream &s_out) (function) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:232: warning: Member alpha_ (variable) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:233: warning: Member epsilon_ (variable) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:235: warning: Member isNoisyDigit_ (variable) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:243: warning: Member text_plusminus_ (variable) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_1d_plot.hpp:234: warning: Member uncSigDigits_ (variable) of class boost::svg::svg_1d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_2d_plot.hpp:442: warning: Member alpha_ (variable) of class boost::svg::svg_2d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_2d_plot.hpp:443: warning: Member epsilon_ (variable) of class boost::svg::svg_2d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_2d_plot.hpp:445: warning: Member isNoisyDigit_ (variable) of class boost::svg::svg_2d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_2d_plot.hpp:453: warning: Member text_plusminus_ (variable) of class boost::svg::svg_2d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_2d_plot.hpp:444: warning: Member uncSigDigits_ (variable) of class boost::svg::svg_2d_plot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_boxplot.hpp:733: warning: Member alpha_ (variable) of class boost::svg::svg_boxplot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_boxplot.hpp:734: warning: Member epsilon_ (variable) of class boost::svg::svg_boxplot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_boxplot.hpp:736: warning: Member isNoisyDigit_ (variable) of class boost::svg::svg_boxplot is not documented.
+I:/boost-sandbox/soc/2007/visualization/boost/svg_plot/svg_boxplot.hpp:735: warning: Member uncSigDigits_ (variable) of class boost::svg::svg_boxplot is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:52: warning: Member operator typename rebind_any< Base, const T & >::type() const (function) of class boost::type_erasure::concept_interface< base_and_derived< T, U >, Base, U > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:56: warning: Member operator typename rebind_any< Base, T & >::type() (function) of class boost::type_erasure::concept_interface< base_and_derived< T, U >, Base, U > is not documented.
+I:/boost-sandbox/soc/2007/quan/boost/quan/type_erasure_printer.hpp:100: warning: Member apply(Os &out, const std::pair< T1, T2 > &arg) (function) of class boost::type_erasure::ostreamable< Os, std::pair< T1, T2 > > is not documented.
+<write>:277: warning: Unsupported xml/html tag <g> found
+<conf_interval>:1: warning: argument 'unc' of command @param is not found in the argument list of conf_interval(double mean, double sigma, double df=1., double alpha=0.05, distribution_type distrib=gaussian)
+<conf_interval>:1242: warning: explicit link request to 'x03C3' could not be resolved
+<conf_interval>:1242: warning: explicit link request to 'x00B2' could not be resolved
+<conf_interval>:1: warning: The following parameters of conf_interval(double mean, double sigma, double df=1., double alpha=0.05, distribution_type distrib=gaussian) are not documented:
+ parameter 'sigma'
+<operator<<>:151: warning: Found unknown command `\detail'
+<operator<<>:162: warning: Found unknown command `\detail'
+<operator<<>:162: warning: expected whitespace after b command
+<out_value_df_limits>:1: warning: argument 'Signed' of command @param is not found in the argument list of out_value_df_limits(double mean, double unc, int degfree=1, std::ostream &os=std::cout)
+<out_value_df_limits>:1: warning: argument 'm' of command @param is not found in the argument list of out_value_df_limits(double mean, double unc, int degfree=1, std::ostream &os=std::cout)
+<out_value_df_limits>:1: warning: The following parameters of out_value_df_limits(double mean, double unc, int degfree=1, std::ostream &os=std::cout) are not documented:
+ parameter 'degfree'
+<out_value_limits>:1: warning: argument 'Signed' of command @param is not found in the argument list of out_value_limits(double mean, double unc, std::pair< double, double > ci, int m, std::ostream &os=std::cout)
+<out_value_limits>:1: warning: The following parameters of out_value_limits(double mean, double unc, std::pair< double, double > ci, int m, std::ostream &os=std::cout) are not documented:
+ parameter 'ci'
+<round_e>:258: warning: explicit link request to 'max_digits10' could not be resolved
+<round_e>:259: warning: explicit link request to 'digits' could not be resolved
+<round_e>:1: warning: argument 'd' of command @param is not found in the argument list of round_e(FPT v, int sigdigits)
+<round_e>:1: warning: The following parameters of round_e(FPT v, int sigdigits) are not documented:
+ parameter 'v'
+<round_m>:1: warning: argument 'sigmasigdigits' of command @param is not found in the argument list of round_m(double epsilon=0.01, double sigma=0., unsigned int sigma_sigdigits=2U, distribution_type distrib=gaussian)
+<round_m>:1: warning: argument 'distribution_type' of command @param is not found in the argument list of round_m(double epsilon=0.01, double sigma=0., unsigned int sigma_sigdigits=2U, distribution_type distrib=gaussian)
+<round_m>:1: warning: The following parameters of round_m(double epsilon=0.01, double sigma=0., unsigned int sigma_sigdigits=2U, distribution_type distrib=gaussian) are not documented:
+ parameter 'sigma_sigdigits'
+ parameter 'distrib'

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/inkscape.qbk
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/inkscape.qbk (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/inkscape.qbk 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -1,15 +1,15 @@
-[section:inkviewscape Using Inkscape and Inkview ]
+[section:inkviewscape Using Inkscape and Inkview]
 
-These two programs can be regarded as 'reference' programs for rendering SVG images.
+These two programs can be regarded as ['reference] programs for rendering SVG images.
 The results are always superior to any general purpose browsers.
 
 [h4 Using Inkview]
 
-You may find it especially convenient to use the viewer, Inkview, on Microsoft Windows,
+You may find it especially convenient to use the read-only viewer, Inkview, on Microsoft Windows,
 and make this the default program for files of type .svg.
 To do this, you will need to download install the Inkscape package.
-Inkview.exe is included in the directory you chose for the install,
-usually C:\program Files\Inkscape.
+Inkview.exe is included in the directory you choose for the install,
+usually `C:\program Files\Inkscape`.
 
 You will need to use the Windows Explorer, Tools, Folder Options,
 and add extension .svg if necessary, and then associate .svg files with inkview.exe.
@@ -88,7 +88,7 @@
 
 * [@www.ijg.org/ JPEG (.jpeg)]
 
-* (@en.wikipedia.org/wiki/Tagged_Image_File_Format TIFF (.tif)]
+* [@en.wikipedia.org/wiki/Tagged_Image_File_Format TIFF (.tif)]
 
 * Adobe Portable document Format (.pdf)
 

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/rationale.qbk
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/rationale.qbk (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/rationale.qbk 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -1,9 +1,88 @@
-[section:implementation Implementation & Rationale]
+[section:implementation Implementation, History & Rationale]
+
+[section:history History]
+
+# 2007 Initial versions without uncertainty handling by Jake Voytko.
+# 2009 Simple uncertainty handling added by Paul A. Bristow.
+# 2010 Release as a [@http://sourceforge.net/projects/svgplot sourceforge project].
+# 2012 Full uncertainty handling added by Paul A. Bristow.
+
+[endsect] [/section:history History]
+
+[section:compilers Compilers and Examples]
+
+[h4 Compiler and platforms versions]
+
+The code is header-only and does not require any pre-built libraries,
+but to avoid requiring the Boost C99 math library,
+you should define the macro `BOOST_ALL_NO_LIB`.
+For example, in the jamfile this is done with:
+
+ <define>BOOST_ALL_NO_LIB # Avoid using 'libboost_math_c99-vc100-mt-gd-1_53.lib'.
+
+In a preprocessor definitions, write `-DBOOST_ALL_NO_LIB`
+
+You will require a Boost library to be in your include path
+and the SVG plot visualization modules
+
+[https://svn.boost.org/svn/boost/sandbox/SOC/2007/visualization/ visualization]
+
+The uncertainty handling code has been stored at
+[@https://svn.boost.org/svn/boost/sandbox/SOC/2007/quan/ quan library]
+
+The code of version 2 is written to comply with the C++11 standard.
+
+[note If you want to use older compilers, you should probably instead use the 1st release of this software
+which did not provide a full implementation of uncertainty, but this feature requires the C++11 `auto` feature.]
+
+The examples have been built with
+
+# Microsoft Visual Studio 2010 and 2012 (MSVC).
+# GCC 4.7.2 needs option -std=c++11
+# Clang 3.1 needs option -std=c++11
+
+but might work on some earlier releases.
+
+To avoid warnings:
+
+with GCC and Clang these options may be useful
+
+ -Wno-missing-braces, -Wno-reorder, -Wno-unused-variable
+
+and with MSVC
+
+ /wd4800 # Forcing value to bool 'true' or 'false'
+ /wd4996 # Deprecated.
+ /wd4512 # Assignment operator could not be generated.
+ /wd4127 # Expression is constant.
+
+
+Other compilers like Apple Darwin and Intel have not been used, but are likely to work OK.
+
+[h4 IDE]
+
+The examples have been built using two IDEs:
+
+* Microsoft Visual Studio (using the Microsoft compilers only).
+* Netbeans 7.2 (using Clang and GCC, and Microsoft compiler using `VCC4N C++ Compiler` tool).
+
+[h4 Building the examples]
+
+A Boost bjam (aka b2) 'jamfile.v2' is provided in the libs/examples folder
+to build all the examples using the chosen compiler.
+You may like to copy and modify this to build your own programs using bjam.
+It contains the necessary options and warnings disablers for the above compilers.
+
+[endsect] [/section:compilers Compilers and Examples]
+
+
+[section:implementation Implementation and other notes]
 
 [h4 Switches for axis labels and autoscaling]
 
-If a axis label string is provided, or autoscaling is requested, it is assumed that it should be displayed/acted on.
-So there functions have the effect of switching these options on, as if , for example:
+If a axis label string is provided, or autoscaling is requested,
+it is assumed that it should be displayed/acted on.
+So there functions have the effect of switching these options on, as if, for example:
 
 `x_autoscale(true);`
 `y_label_on(true);`
@@ -249,7 +328,7 @@
 
 Unicode symbols that work on most browsers in html are listed at:
 
-[@boost\math_toolkit\libs\math\doc\sf_and_dist\html4_symbols.qbk html4_symbols],
+[@boost/math_toolkit/libs/math/doc/sf_and_dist/html4_symbols.qbk html4_symbols],
 [@http://www.htmlhelp.com/reference/html40/entities/symbols.html reference/html40/entities/symbols],
 and [@http://www.alanwood.net/demos/ent4_frame.html demos].
 
@@ -269,7 +348,7 @@
 [h4 Subscript and superscript in title, legend and labels]
 
 It is very common need to show superscript, in units for example, area (m[super 2]),
-and subscript for a[sub 0, a[sub 2]...
+and subscript for a[sub 0], a[sub 2]...
 
 Sadly, although these needs are both OK with html,
 showing sub and superscripts in svg doesn't work well as yet
@@ -324,10 +403,13 @@
 
 Some data members end with _ to avoid name clashes, another widely used convention.
 
-[endsect] [/section:implementation Implementation & Rationale]
+[endsect] [/section:implementation Implementation and other notes]
+
+[endsect] [/section:implementation Implementation, History & Rationale]
+
 
 [/ rationale.qbk
- Copyright 2008 - 2009 Jake Voytko and Paul A. Bristow.
+ Copyright 2008 - 2009, 2012 Jake Voytko and Paul A. Bristow.
   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).

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/svg_plot.qbk
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/svg_plot.qbk (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/svg_plot.qbk 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -77,13 +77,14 @@
 
 * [@http://www.adobe.com/products/illustrator Adobe Illustrator].
 
-* [@http:/www.google.com/chrome Google Chrome browser]
+* [@http:/www.google.com/chrome Google Chrome browser].
 
-* [@www.opera.com Opera] has [@http://www.opera.com/docs/specs/svg/ svg support].
+* [@www.opera.com Opera] has good [@http://www.opera.com/docs/specs/svg/ svg support].
 
 * Microsoft Internet Explorer IE9 and later,
 but the quality of rendering is poor compared to all other browsers and cannot be recommended.
-But earlier versions of Microsoft Internet Explorer can render SVG files provided a suitable
+But earlier versions of Microsoft Internet Explorer
+can adequately render SVG files provided a suitable
 [@http://www.adobe.com/svg/ Adobe SVG Viewer plug-in for SVG files] is installed.
 (Adobe have stopped offering this for download (as they warned years ago)
 but the download software can still be obtained elsewhere, for example from
@@ -167,7 +168,7 @@
 
 
 [/ svg_plot.qbk
- Copyright 2008 Jake Voytko and Paul A. Bristow 2008, 2009, 2010, 2011.
+ Copyright 2008 Jake Voytko and Paul A. Bristow 2008, 2009, 2010, 2011, 2012.
   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).

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/svg_tutorial.qbk
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/svg_tutorial.qbk (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/svg_tutorial.qbk 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -6,7 +6,7 @@
 
 A few very rudimentary examples of use (mainly historically used to testbed various features used in the plot interfaces) can be seen at
 
-[@../../example/demo_svg.cpp]
+[@../../example/demo_svg.cpp demo_svg.cpp]
 
 [endsect]
 

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/example/Jamfile.v2
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/example/Jamfile.v2 (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/example/Jamfile.v2 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -59,7 +59,7 @@
 
       <include>../../../ # boost-sandbox/SOC/2007/visualization
       <include>../../../../../../../ # boost-trunk
- <include>../../../..//quan/ # boost-sandbox/SOC/2007/quan
+ <include>../../../../quan/ # boost-sandbox/SOC/2007/quan
     ;
     
 

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_1d_uncertainty.cpp
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_1d_uncertainty.cpp (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_1d_uncertainty.cpp 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -91,9 +91,9 @@
     /*`A few (member) functions that are set (using concatenation or chaining) should be fairly self-explanatory:
 
     * .title() provides a title at the top for the whole plot,
- * .`legend_on(true)` will mean that titles of data series and markers will display in the legend box.
- * .`x_range(-1, 11)` sets the axis limits from -1 to +11 (instead of the default -10 to +10).
- * .`background_border_color(blue)` sets just one of the very many other options.
+ * .legend_on(true) will mean that titles of data series and markers will display in the legend box.
+ * .x_range(-1, 11) sets the axis limits from -1 to +11 (instead of the default -10 to +10).
+ * .background_border_color(blue) sets just one of the very many other options.
     */
     my_plot.autoscale_check_limits(false); // Default is true.
     my_plot.autoscale_plusminus(2); // default is 3.

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_2d_limits.cpp
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_2d_limits.cpp (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_2d_limits.cpp 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -152,5 +152,5 @@
 limit points fill color RGB(255,192,203)
 
 */
-//} //[/demo_2d_limits_output]
+//] //[/demo_2d_limits_output]
 

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_2d_uncertainty.cpp
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_2d_uncertainty.cpp (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/example/demo_2d_uncertainty.cpp 2013-01-08 09:59:02 EST (Tue, 08 Jan 2013)
@@ -124,7 +124,7 @@
   data1.insert(make_pair(uncun(4.1, 0.4F, 7), uncun(3.1, 0.3F, 18))); //
   data1.insert(make_pair(uncun(-2.234, 0.03F, 7), uncun(-8.76, 0.9F, 9)));
 
- /*
+ /*
 `Make very sure you don't forget either uncun(...) like this
 `data1.insert(make_pair((-2.234, 0.12F, 7),(-8.76, 0.56F, 9)));`
 because, by the bizarre operation of the comma operator, the result will be an integer!
@@ -209,7 +209,7 @@
 
   show_2d_plot_settings(my_plot);
 
- // ] [/demo_2d_uncertainty_2]
+ //] [/demo_2d_uncertainty_2]
 
   }
   catch (const std::exception& e)


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk