Is there a library for Python that will allow me to parse C ++ code?
For example, let's say I want to parse some C ++ code and find the names of all classes and their member functions / variables.
I can come up with several ways to hack it together with regular expressions, but if there is an existing library, it will be more useful.
source
share