diff --git a/addressof.html b/addressof.html new file mode 100644 index 0000000..016b35c --- /dev/null +++ b/addressof.html @@ -0,0 +1,24 @@ + + +
+<boost/utility/addressof.hpp>
+ The header <boost/utility/addressof.hpp>
defines the function template boost::addressof
.
+ boost::addressof(x)
returns the address of x
. Ordinarily, this address can be obtained by
+ &x
, but the unary &
operator can be overloaded.
+
+ boost::addressof
was originally contributed by Brad King based on ideas from discussion with Doug Gregor.
+
+ Copyright © 2014 by Peter Dimov. 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.
+ + diff --git a/index.html b/index.html new file mode 100644 index 0000000..f5924ce --- /dev/null +++ b/index.html @@ -0,0 +1,35 @@ + + + ++ The Boost.Core library is a collection of core utilities. The criteria for inclusion is + that the utility component be +
++ Currently, the Core library contains +
+boost::addressof
boost::checked_delete
boost::enable_if
boost::noncopyable
boost::ref
+ Copyright © 2014 by Peter Dimov. 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.
+ + diff --git a/noncopyable.html b/noncopyable.html new file mode 100644 index 0000000..43848f1 --- /dev/null +++ b/noncopyable.html @@ -0,0 +1,25 @@ + + + +<boost/noncopyable.hpp>
+ The header <boost/noncopyable.hpp>
defines the class boost::noncopyable
. It is intended
+ to be used as a private base. boost::noncopyable
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.
+
+ boost::noncopyable
was originally contributed by Dave Abrahams.
+
+ Copyright © 2014 by Peter Dimov. 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.
+ +