mirror of
https://github.com/boostorg/serialization.git
synced 2026-01-24 06:22:08 +00:00
83 lines
3.5 KiB
HTML
83 lines
3.5 KiB
HTML
<!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<!--
|
|
(C) Copyright 2002-4 Robert Ramey - http://www.rrsd.com .
|
|
Use, modification and distribution is subject to 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)
|
|
-->
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<link rel="stylesheet" type="text/css" href="../../../boost.css">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<title>Serialization - Release Notes</title>
|
|
</head>
|
|
<body link="#0000ff" vlink="#800080">
|
|
<table border="0" cellpadding="7" cellspacing="0" width="100%" summary="header">
|
|
<tr>
|
|
<td valign="top" width="300">
|
|
<h3><a href="../../../index.htm"><img height="86" width="277" alt="C++ Boost" src="../../../boost.png" border="0"></a></h3>
|
|
</td>
|
|
<td valign="top">
|
|
<h1 align="center">Serialization</h1>
|
|
<h2 align="center">Release Notes</h2>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<hr>
|
|
<dl class="index">
|
|
<dt><a href="#requirements">Requirements</a></dt>
|
|
<dt><a href="#Platforms">Platforms</a></dt>
|
|
<dt><a href="#recent_improvements">Differences from Draft #20</a></dt>
|
|
<dt><a href="#todo">Pending Issues</a></dt>
|
|
</dl>
|
|
This is the Boost 1.32 Serialization Library.
|
|
There are currently no known bugs. However, due to compiler/library quirks and or
|
|
bugs, some tests fail.
|
|
<h2><a name="requirements"></a>Requirements</h2>
|
|
This library requires Boost version 1.32 or later. Depending on the compiler used,
|
|
It may also require spirit 1.6x which is not part of the standard boost distribution.
|
|
<p>
|
|
The serialization library requires the boost spirit package to load XML archives.
|
|
We have found that all tests pass using spirit 1.6x. Spirit 1.8 and higher does not work with
|
|
older compilers - specificallly MSVC 6, Borland and GCC < 3.0.
|
|
If you are using one of these two compilers, you may download a version
|
|
of spirit 1.6 <a href="http://spirit.sourceforge.net/index.php?doc=download/index.html">here</a>.
|
|
To use this downloaded version rather than the one included with boost,
|
|
set an environmental variable SPIRIT_ROOT to be equal to the root
|
|
directory where the downloaded copy of spirit has been placed. E. G.
|
|
<pre><code>
|
|
set SPIRIT_ROOT=c:/spirit161
|
|
</code></pre>
|
|
If you're not using bjam and the jamfile to build the library, be sure that
|
|
the directory which contains the version of spirit you plan to use is placed
|
|
at the front of the list of include paths.
|
|
|
|
<h2><a name="recent_improvements"></a>Differences from Draft #20</h2>
|
|
<ul>
|
|
<li>Support for <em>Argument Dependent Looup</em> for serialization override invocations.
|
|
<li>Enhanced documentation to help explain usage of the above.
|
|
<li>Adjustments to improve support for less conformant compilers.
|
|
<li>A few bug fixes.
|
|
</ul>
|
|
|
|
<h2><a name="todo"></a>Pending issues</h2>
|
|
<ul>
|
|
<li>Compile, and test on more platforms
|
|
<li>implement <code>is_virtual_base<T></code> to automatically
|
|
eliminate redundancy in virtual base class serialization.
|
|
<li>currently can't serialize through a pointer an object a of class
|
|
that implements its own <code style="white-space: normal">new/delete</code> operators.
|
|
</ul>
|
|
|
|
<hr>
|
|
<p>Revised
|
|
<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->
|
|
29 February, 2004
|
|
<!--webbot bot="Timestamp" endspan i-checksum="39359" -->
|
|
</p>
|
|
<p><i>© Copyright <a href="http://www.rrsd.com">Robert Ramey</a>
|
|
2003-2004. All Rights Reserved.</i></p>
|
|
</body>
|
|
</html>
|