[pygccxml-commit] source/pyplusplus/decl_wrappers scopedef_wrapper.py,1.8,1.9
Brought to you by:
mbaas,
roman_yakovenko
From: Roman <rom...@us...> - 2006-04-12 07:40:43
|
Update of /cvsroot/pygccxml/source/pyplusplus/decl_wrappers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20656/pyplusplus/decl_wrappers Modified Files: scopedef_wrapper.py Log Message: Documentation improvments Index: scopedef_wrapper.py =================================================================== RCS file: /cvsroot/pygccxml/source/pyplusplus/decl_wrappers/scopedef_wrapper.py,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** scopedef_wrapper.py 6 Apr 2006 06:15:59 -0000 1.8 --- scopedef_wrapper.py 12 Apr 2006 07:40:34 -0000 1.9 *************** *** 26,30 **** 4. function - user ( your ) custom criteria. The interesting thing is that this function will be joined with other arguments ( criteria ). ! 5 recursive - the search declaration range, if True will be search in internal declarations too. --- 26,30 ---- 4. function - user ( your ) custom criteria. The interesting thing is that this function will be joined with other arguments ( criteria ). ! 5. recursive - the search declaration range, if True will be search in internal declarations too. *************** *** 33,36 **** --- 33,37 ---- Example: + ns - referers to global namespace ns.member_function( "do_something ) - will return reference to member *************** *** 40,43 **** --- 41,45 ---- Example 2: + ns - referers to global namespace do_smths = ns.member_functions( "do_something ) - will return instance *************** *** 51,54 **** --- 53,57 ---- Pay attention: you can not use "get" functions or properties. + """ |