Revision: 1367
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1367&view=rev
Author: roman_yakovenko
Date: 2008-07-09 23:06:24 -0700 (Wed, 09 Jul 2008)
Log Message:
-----------
small documentation fix
Modified Paths:
--------------
pyplusplus_dev/docs/documentation/how_to/how_to.rest
Modified: pyplusplus_dev/docs/documentation/how_to/how_to.rest
===================================================================
--- pyplusplus_dev/docs/documentation/how_to/how_to.rest 2008-07-06 19:29:39 UTC (rev 1366)
+++ pyplusplus_dev/docs/documentation/how_to/how_to.rest 2008-07-10 06:06:24 UTC (rev 1367)
@@ -68,14 +68,11 @@
.. code-block:: Python
- registration_code = 'def( "get_size", &%s::get_size )' % window.wrapper_alias
-
-.. code-block:: Python
-
mb = module_builder_t( ... )
window = mb.class_( "window_t" )
window.member_function( "get_size" ).exclude()
window.add_wrapper_code( wrapper_code )
+ registration_code = 'def( "get_size", &%s::get_size )' % window.wrapper_alias
window.registration_code( registration_code )
That's all.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|