I want to parse c++ sources in Python. Namely, information about the structure of the classes.
I need to construct some object in Python that should contain information about c++ class. Something like this:
- [namespace]
- function name [: parent]
- [constructor([parameters])]
- [destructor([parameters])]
- public methods([parameters])
- private methods([parameters])
- [enums]
- [structures]
any advice for this work?
any helpful modules?
similar projects?
thx!