Re: [pygccxml-development] declarations string, stability
Brought to you by:
mbaas,
roman_yakovenko
From: Ben S. <bsc...@lu...> - 2007-12-08 20:11:44
|
=20 =09 No, what you want is to use declarations.full_name function. =09 Are you sure? It does not seem to include the full signature. Example, for the methods:=20 =09 int get_int (const char *from_string); int get_int (double from_float); =09 full_name prints: =09 '::SomeObject::get_int' '::SomeObject::get_int' =09 =20 You could use str(declaration). That'll print out the full signature of the member functions. Otherwise, you'll probably have to write your own formatting function. =20 Cheers Ben |