Update of /cvsroot/pygccxml/source/pyplusplus/code_creators
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11897/pyplusplus/code_creators
Modified Files:
member_variable.py
Log Message:
TODO: change generated code, in order to support pointer member variables
Index: member_variable.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/code_creators/member_variable.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** member_variable.py 10 Apr 2006 11:57:15 -0000 1.13
--- member_variable.py 20 Apr 2006 05:36:43 -0000 1.14
***************
*** 29,32 ****
--- 29,37 ----
wrapper = property( _get_wrapper, _set_wrapper )
+ #TODO:
+ #> On Wednesday, 19. April 2006 23:05, Ralf W. Grosse-Kunstleve wrote:
+ #> .add_property("p", make_function(&A::get_p,
+ #> return_value_policy<reference_existing_object>()))
+
class member_variable_t( member_variable_base_t ):
"""
|