Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r66266 - in sandbox/chrono/libs/chrono/doc: . html html/boost_chrono html/boost_chrono/appendices html/boost_chrono/overview html/boost_chrono/reference html/boost_chrono/users_guide
From: vicente.botet_at_[hidden]
Date: 2010-10-30 08:23:16


Author: viboes
Date: 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
New Revision: 66266
URL: http://svn.boost.org/trac/boost/changeset/66266

Log:
Chrono: Update doc for 0.7

Text files modified:
   sandbox/chrono/libs/chrono/doc/chrono.qbk | 26 +++++++++++++-------------
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices.html | 4 ++--
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/acknowledgements.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/faq.html | 4 ++--
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/history.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/implementation.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/rationale.html | 15 +++++++++------
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/todo.html | 4 ++--
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview.html | 6 +++---
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview/description.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview/motivation.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference.html | 4 ++--
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/cpp0x.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/deprecated.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/io.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/other_clocks.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide.html | 4 ++--
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/examples.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/ext_references.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/getting_started.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/tutorial.html | 2 +-
   sandbox/chrono/libs/chrono/doc/html/index.html | 8 ++++----
   22 files changed, 52 insertions(+), 49 deletions(-)

Modified: sandbox/chrono/libs/chrono/doc/chrono.qbk
==============================================================================
--- sandbox/chrono/libs/chrono/doc/chrono.qbk (original)
+++ sandbox/chrono/libs/chrono/doc/chrono.qbk 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -9,7 +9,7 @@
 
 [article Boost.Chrono
     [quickbook 1.5]
- [version 0.6.0]
+ [version 0.7.0]
     [authors [Hinnant, Howard]]
     [authors [Dawes, Beman]]
     [authors [Botet Escriba, Vicente J.]]
@@ -1007,12 +1007,12 @@
 [section Examples]
 [/===============]
 
-[section Common type]
+[section Time point]
 
 [/==================]
 [section min utility]
 
-Returns the earliest time_point.
+The following function returns the earliest time_point.
 
     template <class Clock, class Duration1, class Duration2>
     typename boost::__common_type__<__time_point__<Clock, Duration1>,
@@ -1026,7 +1026,7 @@
 
     BOOST_AUTO(t1, system_clock::now() + seconds(3));
     BOOST_AUTO(t2, system_clock::now() + nanoseconds(3));
- BOOST_AUTO(t3, (min)(t1, t2));
+ BOOST_AUTO(t3, min(t1, t2));
 
 ['See the source file [@../../example/min_time_point.cpp example/min_time_point.cpp]]
 
@@ -1041,7 +1041,7 @@
 [/===============]
 [section How you override the duration's default constructor]
 
-Next follows how you override the duration's default constructor to do anything you want (in this case zero). All we need to do is to change the representation
+Next follows how you override the duration's default constructor to do anything you want (in this case set it to zero). All we need to do is to change the representation
 
     namespace I_dont_like_the_default_duration_behavior {
 
@@ -1100,11 +1100,11 @@
 ['See the source file [@../../example/i_dont_like_the_default_duration_behavior.cpp example/i_dont_like_the_default_duration_behavior.cpp]]
 
 [endsect]
-
+[/
 [/=========================]
 [section runtime_resolution]
 
-Handle duration with resolution not known until run time
+This example shows how to handle duration with resolution not known until run time
 
     class duration
     {
@@ -1163,7 +1163,7 @@
 ['See the source file [@../../example/runtime_resolution.cpp here]]
 
 [endsect]
-
+]
 [/================]
 [section Saturating]
 
@@ -1326,8 +1326,8 @@
     public:
         typedef xtime rep;
         typedef boost::micro period;
- typedef boost::chrono::__duration__<rep, period> duration;
- typedef boost::chrono::__time_point__<xtime_clock> time_point;
+ typedef boost::chrono::duration<rep, period> duration;
+ typedef boost::chrono::time_point<xtime_clock> time_point;
 
         static time_point now()
         {
@@ -3880,7 +3880,7 @@
 
 [heading Why ratio needs CopyConstruction and Assignment from ratios having the same normalized form]
 
-Current [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n3000.pdf [*N3000]] doesn't allows to copy-construct or assign ratio instances of ratio classes having the same normalized form.
+Current [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n3000.pdf [*N3000]] doesn't allows to copy-construct or assign `ratio` instances of `ratio` classes having the same normalized form.
 
 This simple example
 
@@ -3893,7 +3893,7 @@
     __ratio__<1,3> r1;
     ratio_substract<__ratio__<2,3>,__ratio__<1,3> > r2=r1; // (2)
 
-The type of ratio_substract<__ratio__<2,3>,__ratio__<1,3> > could be __ratio__<3,9> so the compilation could fail in (2). It could also be __ratio__<1,3> and the compilation succeeds.
+The type of `ratio_substract<__ratio__<2,3>,__ratio__<1,3> >` could be `__ratio__<3,9>` so the compilation could fail in (2). It could also be `__ratio__<1,3>` and the compilation succeeds.
 
 [heading Why ratio needs the nested normalizer typedef type]
 
@@ -3901,7 +3901,7 @@
 
 ['3 The nested typedef type shall be a synonym for __ratio__<T1, T2> where T1 has the value R1::num * R2::den - R2::num * R1::den and T2 has the value R1::den * R2::den.]
 
-The meaning of synonym let think that the result should be a normalized ratio equivalent to __ratio__<T1, T2>, but there is not an explicit definition of what synonym means in this context.
+The meaning of synonym let think that the result should be a normalized ratio equivalent to `__ratio__<T1, T2>`, but there is not an explicit definition of what synonym means in this context.
 
 If the CopyConstruction and Assignment ([[@http://home.roadrunner.com/~hinnant/issue_review/lwg-active.html#12811281 [*LWG 1281]]) is not added we need a typedef for accessing the normalized ratio, and change 20.4.2 to return only this normalized result. In this case the user will need to
 

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,8 +4,8 @@
 <title>Appendices</title>
 <link rel="stylesheet" href="../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../index.html" title="Boost.Chrono 0.6.0">
-<link rel="up" href="../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../index.html" title="Boost.Chrono 0.7.0">
+<link rel="up" href="../index.html" title="Boost.Chrono 0.7.0">
 <link rel="prev" href="reference/deprecated.html" title=" Deprecated Headers">
 <link rel="next" href="appendices/history.html" title=" Appendix A: History">
 </head>

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/acknowledgements.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/acknowledgements.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/acknowledgements.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -5,7 +5,7 @@
       Acknowledgements</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../appendices.html" title="Appendices">
 <link rel="prev" href="faq.html" title=" Appendix D: FAQ">
 <link rel="next" href="todo.html" title=" Appendix F: Future plans">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/faq.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/faq.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/faq.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title> Appendix D: FAQ</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../appendices.html" title="Appendices">
 <link rel="prev" href="implementation.html" title=" Appendix C:
       Implementation Notes">
@@ -29,7 +29,7 @@
 <a name="boost_chrono.appendices.faq"></a> Appendix D: FAQ
 </h3></div></div></div>
 <a name="boost_chrono.appendices.faq.why_does_process_cpu_clock_sometimes_gives_more_cpu_seconds_than_real_seconds_"></a><h4>
-<a name="id5069734"></a>
+<a name="id5069867"></a>
         <a href="faq.html#boost_chrono.appendices.faq.why_does_process_cpu_clock_sometimes_gives_more_cpu_seconds_than_real_seconds_">Why
         does process_cpu_clock sometimes gives more cpu seconds than real seconds?</a>
       </h4>

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/history.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/history.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/history.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title> Appendix A: History</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../appendices.html" title="Appendices">
 <link rel="prev" href="../appendices.html" title="Appendices">
 <link rel="next" href="rationale.html" title=" Appendix B: Rationale">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/implementation.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/implementation.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/implementation.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -5,7 +5,7 @@
       Implementation Notes</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../appendices.html" title="Appendices">
 <link rel="prev" href="rationale.html" title=" Appendix B: Rationale">
 <link rel="next" href="faq.html" title=" Appendix D: FAQ">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/rationale.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/rationale.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/rationale.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title> Appendix B: Rationale</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../appendices.html" title="Appendices">
 <link rel="prev" href="history.html" title=" Appendix A: History">
 <link rel="next" href="implementation.html" title=" Appendix C:
@@ -81,7 +81,9 @@
       </h4>
 <p>
         Current N3000 doesn't allows to copy-construct or
- assign ratio instances of ratio classes having the same normalized form.
+ assign <code class="computeroutput"><span class="identifier">ratio</span></code> instances of
+ <code class="computeroutput"><span class="identifier">ratio</span></code> classes having the
+ same normalized form.
       </p>
 <p>
         This simple example
@@ -97,12 +99,13 @@
 <span class="identifier">ratio_substract</span><span class="special">&lt;</span><code class="computeroutput"><span class="identifier">ratio</span></code><span class="special">&lt;</span><span class="number">2</span><span class="special">,</span><span class="number">3</span><span class="special">&gt;,</span><code class="computeroutput"><span class="identifier">ratio</span></code><span class="special">&lt;</span><span class="number">1</span><span class="special">,</span><span class="number">3</span><span class="special">&gt;</span> <span class="special">&gt;</span> <span class="identifier">r2</span><span class="special">=</span><span class="identifier">r1</span><span class="special">;</span> <span class="comment">// (2)
 </span></pre>
 <p>
- The type of ratio<span class="underline">substract&lt;</span><span class="underline">ratio</span><span class="underline">&lt;2,3&gt;,</span><span class="underline">ratio</span>_&lt;1,3&gt; &gt; could be <code class="computeroutput"><span class="identifier">ratio</span></code>&lt;3,9&gt; so the compilation could
- fail in (2). It could also be <code class="computeroutput"><span class="identifier">ratio</span></code>&lt;1,3&gt;
- and the compilation succeeds.
+ The type of <code class="computeroutput"><span class="identifier">ratio_substract</span><span class="special">&lt;</span><code class="computeroutput"><span class="identifier">ratio</span></code><span class="special">&lt;</span><span class="number">2</span><span class="special">,</span><span class="number">3</span><span class="special">&gt;,</span><code class="computeroutput"><span class="identifier">ratio</span></code><span class="special">&lt;</span><span class="number">1</span><span class="special">,</span><span class="number">3</span><span class="special">&gt;</span> <span class="special">&gt;</span></code>
+ could be <code class="computeroutput"><code class="computeroutput"><span class="identifier">ratio</span></code><span class="special">&lt;</span><span class="number">3</span><span class="special">,</span><span class="number">9</span><span class="special">&gt;</span></code> so the
+ compilation could fail in (2). It could also be <code class="computeroutput"><code class="computeroutput"><span class="identifier">ratio</span></code><span class="special">&lt;</span><span class="number">1</span><span class="special">,</span><span class="number">3</span><span class="special">&gt;</span></code> and the
+ compilation succeeds.
       </p>
 <a name="boost_chrono.appendices.rationale.why_ratio_needs_the_nested_normalizer_typedef_type"></a><h4>
-<a name="id5069476"></a>
+<a name="id5069608"></a>
         <a href="rationale.html#boost_chrono.appendices.rationale.why_ratio_needs_the_nested_normalizer_typedef_type">Why
         ratio needs the nested normalizer typedef type</a>
       </h4>

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/todo.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/todo.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/appendices/todo.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title> Appendix F: Future plans</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../appendices.html" title="Appendices">
 <link rel="prev" href="acknowledgements.html" title=" Appendix E:
       Acknowledgements">
@@ -27,7 +27,7 @@
 <a name="boost_chrono.appendices.todo"></a> Appendix F: Future plans
 </h3></div></div></div>
 <a name="boost_chrono.appendices.todo.for_later_releases"></a><h4>
-<a name="id5069874"></a>
+<a name="id5070006"></a>
         <a href="todo.html#boost_chrono.appendices.todo.for_later_releases">For later
         releases</a>
       </h4>

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,9 +4,9 @@
 <title>Overview</title>
 <link rel="stylesheet" href="../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../index.html" title="Boost.Chrono 0.6.0">
-<link rel="up" href="../index.html" title="Boost.Chrono 0.6.0">
-<link rel="prev" href="../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../index.html" title="Boost.Chrono 0.7.0">
+<link rel="up" href="../index.html" title="Boost.Chrono 0.7.0">
+<link rel="prev" href="../index.html" title="Boost.Chrono 0.7.0">
 <link rel="next" href="overview/motivation.html" title="Motivation">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview/description.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview/description.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview/description.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title>Description</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../overview.html" title="Overview">
 <link rel="prev" href="motivation.html" title="Motivation">
 <link rel="next" href="../users_guide.html" title=" Users'Guide">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview/motivation.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview/motivation.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/overview/motivation.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title>Motivation</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../overview.html" title="Overview">
 <link rel="prev" href="../overview.html" title="Overview">
 <link rel="next" href="description.html" title="Description">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,8 +4,8 @@
 <title> Reference </title>
 <link rel="stylesheet" href="../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../index.html" title="Boost.Chrono 0.6.0">
-<link rel="up" href="../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../index.html" title="Boost.Chrono 0.7.0">
+<link rel="up" href="../index.html" title="Boost.Chrono 0.7.0">
 <link rel="prev" href="users_guide/ext_references.html" title=" External Resources">
 <link rel="next" href="reference/cpp0x.html" title=" Included on the C++0x
       recommendation">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/cpp0x.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/cpp0x.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/cpp0x.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -5,7 +5,7 @@
       recommendation</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../reference.html" title=" Reference ">
 <link rel="prev" href="../reference.html" title=" Reference ">
 <link rel="next" href="io.html" title=" Chrono I/O">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/deprecated.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/deprecated.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/deprecated.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title> Deprecated Headers</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../reference.html" title=" Reference ">
 <link rel="prev" href="other_clocks.html" title=" Other clocks">
 <link rel="next" href="../appendices.html" title="Appendices">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/io.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/io.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/io.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title> Chrono I/O</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../reference.html" title=" Reference ">
 <link rel="prev" href="cpp0x.html" title=" Included on the C++0x
       recommendation">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/other_clocks.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/other_clocks.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/reference/other_clocks.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title> Other clocks</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../reference.html" title=" Reference ">
 <link rel="prev" href="io.html" title=" Chrono I/O">
 <link rel="next" href="deprecated.html" title=" Deprecated Headers">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,8 +4,8 @@
 <title> Users'Guide</title>
 <link rel="stylesheet" href="../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../index.html" title="Boost.Chrono 0.6.0">
-<link rel="up" href="../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../index.html" title="Boost.Chrono 0.7.0">
+<link rel="up" href="../index.html" title="Boost.Chrono 0.7.0">
 <link rel="prev" href="overview/description.html" title="Description">
 <link rel="next" href="users_guide/getting_started.html" title=" Getting Started">
 </head>

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/examples.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/examples.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/examples.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title>Examples</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../users_guide.html" title=" Users'Guide">
 <link rel="prev" href="tutorial.html" title="Tutorial">
 <link rel="next" href="ext_references.html" title=" External Resources">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/ext_references.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/ext_references.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/ext_references.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title> External Resources</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../users_guide.html" title=" Users'Guide">
 <link rel="prev" href="examples.html" title="Examples">
 <link rel="next" href="../reference.html" title=" Reference ">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/getting_started.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/getting_started.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/getting_started.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title> Getting Started</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../users_guide.html" title=" Users'Guide">
 <link rel="prev" href="../users_guide.html" title=" Users'Guide">
 <link rel="next" href="tutorial.html" title="Tutorial">

Modified: sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/tutorial.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/tutorial.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/boost_chrono/users_guide/tutorial.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -4,7 +4,7 @@
 <title>Tutorial</title>
 <link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="../../index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="../../index.html" title="Boost.Chrono 0.7.0">
 <link rel="up" href="../users_guide.html" title=" Users'Guide">
 <link rel="prev" href="getting_started.html" title=" Getting Started">
 <link rel="next" href="examples.html" title="Examples">

Modified: sandbox/chrono/libs/chrono/doc/html/index.html
==============================================================================
--- sandbox/chrono/libs/chrono/doc/html/index.html (original)
+++ sandbox/chrono/libs/chrono/doc/html/index.html 2010-10-30 08:23:00 EDT (Sat, 30 Oct 2010)
@@ -1,10 +1,10 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
-<title>Boost.Chrono 0.6.0</title>
+<title>Boost.Chrono 0.7.0</title>
 <link rel="stylesheet" href="../../../../doc/html/boostbook.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
-<link rel="start" href="index.html" title="Boost.Chrono 0.6.0">
+<link rel="start" href="index.html" title="Boost.Chrono 0.7.0">
 <link rel="next" href="boost_chrono/overview.html" title="Overview">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -22,7 +22,7 @@
 <div class="titlepage">
 <div>
 <div><h2 class="title">
-<a name="boost_chrono"></a>Boost.Chrono 0.6.0</h2></div>
+<a name="boost_chrono"></a>Boost.Chrono 0.7.0</h2></div>
 <div><div class="authorgroup">
 <div class="author"><h3 class="author">
 <span class="firstname">Howard</span> <span class="surname">Hinnant</span>
@@ -93,7 +93,7 @@
 </table></div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: October 22, 2010 at 18:06:54 GMT</small></p></td>
+<td align="left"><p><small>Last revised: October 22, 2010 at 18:27:49 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>


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