Update of /cvsroot/pygccxml/source/pyplusplus/docs/history
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7773/pyplusplus/docs/history
Modified Files:
history.rest
Log Message:
adding few notes to history
Index: history.rest
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/docs/history/history.rest,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** history.rest 6 Apr 2006 06:16:00 -0000 1.10
--- history.rest 10 Apr 2006 08:20:58 -0000 1.11
***************
*** 5,11 ****
.. contents:: Table of contents
! -----------
! CVS Version
! -----------
1. New GUI features:
--- 5,20 ----
.. contents:: Table of contents
! -------------
! Version 0.7.0
! -------------
!
! Many thanks to *Matthias Baas* and *Allen Bierbaum*! They contributed so much to
! pyplusplus, especially Matthias:
!
! * New high level API: `pyplusplus`_ has simple and poweful API
!
! * Documentation: Matthias and Allen added a lot of documentation strings
!
! * Bug fixes and performance improvments
1. New GUI features:
***************
*** 54,57 ****
--- 63,94 ----
6. Small bug fix - from now file with identical content will not be overwritten.
+ 7. Boost.Python ``optional`` is now supported and used when a constructor has a
+ a default argument.
+
+ 8. `pyplusplus`_ now generates correct code for hierarchy of abstract classes:
+ ::
+
+ struct abstract1{
+ virtual void do_smth() = 0;
+ }
+
+ struct abstract2 : public abstract1{
+ virtual void do_smth_else() = 0;
+ }
+
+ struct concrete : public abstract2{
+ virtual void do_smth(){};
+ virtual void do_smth_else(){};
+ }
+
+ 9. Logging functionality has been added
+
+ 10. New packages ``module_builder``, ``decl_wrappers`` and ``_logging_`` has
+ been added.
+
+ 11. ...
+
+ http://boost.org/libs/python/doc/v2/init.html#optional-spec
+
-------------
Version 0.6.0
|