2002-02-02 18:36:12 +00:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2000-07-27 14:27:00 +00:00
|
|
|
<html>
|
2003-01-25 17:58:01 +00:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
|
<title>Boost Smart Pointer Library</title>
|
|
|
|
</head>
|
|
|
|
<body bgcolor="#FFFFFF" text="#000000">
|
|
|
|
<table border="1" bgcolor="#007F7F" cellpadding="2">
|
|
|
|
<tr>
|
|
|
|
<td bgcolor="#FFFFFF"><img src="../../c++boost.gif" alt="c++boost.gif (8819 bytes)" width="277" height="86"></td>
|
|
|
|
<td><a href="../../index.htm"><font face="Arial" color="#FFFFFF"><big>Home</big></font></a></td>
|
|
|
|
<td><a href="../libraries.htm"><font face="Arial" color="#FFFFFF"><big>Libraries</big></font></a></td>
|
|
|
|
<td><a href="../../people/people.htm"><font face="Arial" color="#FFFFFF"><big>People</big></font></a></td>
|
|
|
|
<td><a href="../../more/faq.htm"><font face="Arial" color="#FFFFFF"><big>FAQ</big></font></a></td>
|
|
|
|
<td><a href="../../more/index.htm"><font face="Arial" color="#FFFFFF"><big>More</big></font></a></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<h1>Smart Pointer Library</h1>
|
|
|
|
<p>The smart pointer library includes five smart pointer class templates. Smart
|
|
|
|
pointers ease the management of memory dynamically allocated with C++ <b>new</b>
|
2003-06-09 18:25:41 +00:00
|
|
|
expressions. In addition, <b>shared_ptr</b> can ease the management of memory
|
2003-01-25 17:58:01 +00:00
|
|
|
dynamically allocated in other ways.</p>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="smart_ptr.htm">Documentation</a> (HTML).</li>
|
|
|
|
<li>
|
|
|
|
Header <a href="../../boost/scoped_ptr.hpp">scoped_ptr.hpp</a>.</li>
|
|
|
|
<li>
|
|
|
|
Header <a href="../../boost/scoped_array.hpp">scoped_array.hpp</a>.</li>
|
|
|
|
<li>
|
|
|
|
Header <a href="../../boost/shared_ptr.hpp">shared_ptr.hpp</a>.</li>
|
|
|
|
<li>
|
|
|
|
Header <a href="../../boost/shared_array.hpp">shared_array.hpp</a>.</li>
|
|
|
|
<li>
|
|
|
|
Header <a href="../../boost/weak_ptr.hpp">weak_ptr.hpp</a>.</li>
|
2003-02-05 12:56:48 +00:00
|
|
|
<li>
|
|
|
|
Header <a href="../../boost/enable_shared_from_this.hpp">enable_shared_from_this.hpp</a>.</li>
|
|
|
|
<li>
|
|
|
|
Header <a href="../../boost/intrusive_ptr.hpp">intrusive_ptr.hpp</a>.</li>
|
2003-01-25 17:58:01 +00:00
|
|
|
<li>
|
|
|
|
Test program <a href="test/smart_ptr_test.cpp">smart_ptr_test.cpp</a>.</li>
|
|
|
|
<li>
|
|
|
|
Originally submitted by <a href="../../people/greg_colvin.htm">Greg Colvin</a> and
|
|
|
|
<a href="../../people/beman_dawes.html">Beman Dawes</a>, currently maintained
|
|
|
|
by <a href="../../people/peter_dimov.htm">Peter Dimov</a> and <a href="../../people/darin_adler.htm">
|
|
|
|
Darin Adler</a>.</li>
|
|
|
|
</ul>
|
2003-02-05 12:56:48 +00:00
|
|
|
<hr>
|
|
|
|
<p>$Date$</p>
|
2003-01-25 17:58:01 +00:00
|
|
|
</body>
|
2000-07-27 14:27:00 +00:00
|
|
|
</html>
|