[pygccxml-development] how can I get the full member signature as string?
Brought to you by:
mbaas,
roman_yakovenko
|
From: Eddy P. <ep...@mu...> - 2006-07-29 13:21:33
|
If I have:
struct foo
{
void bar(std::string&, float, int, bool);
}
and then do:
class_.get_members()
How can I get the full signature, "void foo::bar(std::string&, float,
int, bool)" as a string?
I think I can manage it using the API, and glue all the bits and pieces
together, but there might be a simple way.
Eddy
|