1
0
forked from boostorg/core

Documentation updates.

This commit is contained in:
Peter Dimov
2014-06-10 19:12:54 +03:00
parent 434c59642a
commit 2af3cc1e11
16 changed files with 62 additions and 52 deletions

View File

@ -9,13 +9,13 @@
[section:addressof addressof]
[section Authors]
[simplesect Authors]
* Brad King
* Douglas Gregor
* Peter Dimov
[endsect]
[endsimplesect]
[section Header <boost/core/addressof.hpp>]

View File

@ -1,6 +1,6 @@
[section:checked_delete checked_delete]
[section Authors]
[simplesect Authors]
* Beman Dawes
* Dave Abrahams
@ -8,7 +8,7 @@
* Rainer Deyke
* John Maddock
[endsect]
[endsimplesect]
[section Overview]

View File

@ -8,7 +8,7 @@
]
[library Boost.Core
[quickbook 1.5]
[quickbook 1.6]
[id core]
[copyright 2014 Peter Dimov]
[copyright 2014 Glen Fernandes]
@ -20,6 +20,12 @@
]
]
[template simplesect[title]
[block '''<simplesect><title>'''[title]'''</title>''']]
[template endsimplesect[]
[block '''</simplesect>''']]
[section Introduction]
The Boost.Core library is a collection of core utilities. The
@ -32,18 +38,18 @@ criteria for inclusion is that the utility component be:
[endsect]
[include:core addressof.qbk]
[include:core checked_delete.qbk]
[include:core demangle.qbk]
[include:core enable_if.qbk]
[include:core explicit_operator_bool.qbk]
[include:core ignore_unused.qbk]
[include:core is_same.qbk]
[include:core lightweight_test.qbk]
[include:core no_exceptions_support.qbk]
[include:core noncopyable.qbk]
[include:core null_deleter.qbk]
[include:core ref.qbk]
[include:core scoped_enum.qbk]
[include:core swap.qbk]
[include:core typeinfo.qbk]
[include addressof.qbk]
[include checked_delete.qbk]
[include demangle.qbk]
[include enable_if.qbk]
[include explicit_operator_bool.qbk]
[include ignore_unused.qbk]
[include is_same.qbk]
[include lightweight_test.qbk]
[include no_exceptions_support.qbk]
[include noncopyable.qbk]
[include null_deleter.qbk]
[include ref.qbk]
[include scoped_enum.qbk]
[include swap.qbk]
[include typeinfo.qbk]

View File

@ -9,12 +9,12 @@
[section:demangle demangle]
[section Authors]
[simplesect Authors]
* Peter Dimov
* Andrey Semashev
[endsect]
[endsimplesect]
[section Header <boost/core/demangle.hpp>]

View File

@ -1,12 +1,12 @@
[section:enable_if enable_if]
[section Authors]
[simplesect Authors]
* Jaakko J\u00E4rvi
* Jeremiah Willcock
* Andrew Lumsdaine
[endsect]
[endsimplesect]
[section Introduction]

View File

@ -7,13 +7,13 @@
/ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
/]
[/==============]
[section Authors]
[/==============]
[/=================]
[simplesect Authors]
[/=================]
* Andrey Semashev
[endsect]
[endsimplesect]
[/===============]
[section Overview]

View File

@ -9,11 +9,11 @@
[section:ignore_unused ignore_unused]
[section Authors]
[simplesect Authors]
* Adam Wulkiewicz
[endsect]
[endsimplesect]
[section Header <boost/core/ignore_unused.hpp>]

View File

@ -9,11 +9,11 @@
[section:is_same is_same]
[section Authors]
[simplesect Authors]
* Peter Dimov
[endsect]
[endsimplesect]
[section Header <boost/core/is_same.hpp>]

View File

@ -11,12 +11,12 @@
[section:lightweight_test lightweight_test]
[section Authors]
[simplesect Authors]
* Peter Dimov
* Beman Dawes
[endsect]
[endsimplesect]
[section Header <boost/core/lightweight_test.hpp>]

View File

@ -10,11 +10,11 @@
[section:no_exceptions_support no_exceptions_support]
[section Authors]
[simplesect Authors]
* Pavel Vozenilek
[endsect]
[endsimplesect]
[section Header <boost/core/no_exceptions_support.hpp>]

View File

@ -10,11 +10,11 @@
[section:noncopyable noncopyable]
[section Authors]
[simplesect Authors]
* Dave Abrahams
[endsect]
[endsimplesect]
[section Header <boost/core/noncopyable.hpp>]

View File

@ -7,11 +7,11 @@
[section:null_deleter null_deleter]
[section Authors]
[simplesect Authors]
* Andrey Semashev
[endsect]
[endsimplesect]
[section Header <boost/core/null_deleter.hpp>]
@ -20,12 +20,14 @@ which can be used as a deleter with smart pointers such as `unique_ptr` or `shar
deleter doesn't do anything with the pointer provided upon deallocation, which makes it useful
when the pointed object is deallocated elsewhere.
Example
std::shared_ptr< std::ostream > make_stream()
{
return std::shared_ptr< std::ostream >(&std::cout, boost::null_deleter());
}
[section Example]
``
std::shared_ptr< std::ostream > make_stream()
{
return std::shared_ptr< std::ostream >(&std::cout, boost::null_deleter());
}
``
[endsect]
[endsect]

View File

@ -1,6 +1,6 @@
[section:ref ref]
[section Authors]
[simplesect Authors]
* Jaakko J\u00E4rvi
* Peter Dimov
@ -9,7 +9,7 @@
* Frank Mori Hess
* Ronald Garcia
[endsect]
[endsimplesect]
[section Introduction]

View File

@ -1,3 +1,5 @@
[quickbook 1.5]
[section:scoped_enum scoped_enum]
[section Authors]

View File

@ -1,13 +1,13 @@
[section:swap swap]
[section Authors]
[simplesect Authors]
* Niels Dekker
* Joseph Gauterin
* Steven Watanabe
* Eric Niebler
[endsect]
[endsimplesect]
[section Header <boost/core/swap.hpp>]

View File

@ -9,11 +9,11 @@
[section:typeinfo typeinfo]
[section Authors]
[simplesect Authors]
* Peter Dimov
[endsect]
[endsimplesect]
[section Header <boost/core/typeinfo.hpp>]