2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-25 18:32:24 +00:00

update news

[SVN r16607]
This commit is contained in:
Dave Abrahams
2002-12-14 00:17:22 +00:00
parent abd22f1273
commit dd8fc049ff
2 changed files with 17 additions and 1 deletions

View File

@@ -35,6 +35,21 @@
function pointers when used as arguments to <a
href="v2/class.html#class_-spec-modifiers">add_property</a></dd>
<dt>13 December 2002</dt>
<dd>Allow exporting of <a href=
"v2/enum.html#enum_-spec"><code>enum_</code></a> values into
enclosing <a
href="v2/scope.html#scope-spec"><code>scope</code></a>.
<br>
Fixed unsigned integer conversions to deal correctly with
numbers that are out-of-range of <code>signed long</code>.
</dd>
<dt>14 November 2002</dt>
<dd>Auto-detection of class data members wrapped with <a href=

View File

@@ -87,7 +87,8 @@ namespace boost { namespace python
class enum_ : public <a href="object.html#object-spec">object</a>
{
enum_(char const* name);
inline enum_&lt;T&gt;&amp; value(char const* name, T);
enum_&lt;T&gt;&amp; value(char const* name, T);
enum_&lt;T&gt;&amp; export_values();
};
}}
</pre>