1
0
forked from boostorg/core

Add index.html, addressof.html, noncopyable.html

This commit is contained in:
Peter Dimov
2014-06-01 04:28:25 +03:00
parent 8ad3288b0b
commit c63c917ebe
3 changed files with 84 additions and 0 deletions

24
addressof.html Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>&lt;boost/utility/addressof.hpp&gt; Header Documentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body bgcolor="white" style="MARGIN-LEFT: 5%; MARGIN-RIGHT: 5%">
<p><a href="../../index.htm"> <img src="../../boost.png" alt="boost.png (6897 bytes)" width="277" height="86" border="0" /></a></p>
<h1><code>&lt;boost/utility/addressof.hpp&gt;</code></h1>
<p>
The header <code>&lt;boost/utility/addressof.hpp&gt;</code> defines the function template <code>boost::addressof</code>.
<code>boost::addressof(x)</code> returns the address of <code>x</code>. Ordinarily, this address can be obtained by
<code>&amp;x</code>, but the unary <code>&amp;</code> operator can be overloaded.
</p>
<p>
<code>boost::addressof</code> was originally contributed by Brad King based on ideas from discussion with Doug Gregor.
</p>
<hr />
<p>
<small>Copyright <20> 2014 by Peter Dimov. Distributed under the Boost Software License, Version
1.0. See accompanying file <a href="../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or
copy at <a href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>.</small></p>
</body>
</html>

35
index.html Normal file
View File

@ -0,0 +1,35 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Boost.Core Library Documentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body bgcolor="white" style="MARGIN-LEFT: 5%; MARGIN-RIGHT: 5%">
<p><a href="../../index.htm"> <img src="../../boost.png" alt="boost.png (6897 bytes)" width="277" height="86" border="0" /></a></p>
<h1>Boost.Core</h1>
<p>
The Boost.Core library is a collection of core utilities. The criteria for inclusion is
that the utility component be
</p>
<ul>
<li>simple,</li>
<li>used by other Boost libraries, and</li>
<li>not dependent on any other Boost modules except Core itself, Config, Assert, Static Assert, or Predef.</li>
</ul>
<p>
Currently, the Core library contains
</p>
<ul>
<li><code><a href="addressof.html">boost::addressof</a></code></li>
<li><code><a href="checked_delete.html">boost::checked_delete</a></code></li>
<li><code><a href="enable_if.html">boost::enable_if</a></code></li>
<li><code><a href="noncopyable.html">boost::noncopyable</a></code></li>
<li><code>boost::ref</code></li>
</ul>
<hr />
<p>
<small>Copyright <20> 2014 by Peter Dimov. Distributed under the Boost Software License, Version
1.0. See accompanying file <a href="../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or
copy at <a href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>.</small></p>
</body>
</html>

25
noncopyable.html Normal file
View File

@ -0,0 +1,25 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>&lt;boost/noncopyable.hpp&gt; Header Documentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body bgcolor="white" style="MARGIN-LEFT: 5%; MARGIN-RIGHT: 5%">
<p><a href="../../index.htm"> <img src="../../boost.png" alt="boost.png (6897 bytes)" width="277" height="86" border="0" /></a></p>
<h1><code>&lt;boost/noncopyable.hpp&gt;</code></h1>
<p>
The header <code>&lt;boost/noncopyable.hpp&gt;</code> defines the class <code>boost::noncopyable</code>. It is intended
to be used as a private base. <code>boost::noncopyable</code> has private (under C++03) or deleted (under C++11) copy
constructor and a copy assignment operator and can't be copied or assigned; a class that derives from it inherits these
properties.
</p>
<p>
<code>boost::noncopyable</code> was originally contributed by Dave Abrahams.
</p>
<hr />
<p>
<small>Copyright <20> 2014 by Peter Dimov. Distributed under the Boost Software License, Version
1.0. See accompanying file <a href="../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or
copy at <a href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>.</small></p>
</body>
</html>