I\'m looking for a way to parse c++ code to retrieve some basic information about classes. I don\'t actually need much information from the code itself, but I do need it to hand
You can easily get macros expanded by just running pre-processor (cpp) on the source.
The templates are not that easy since template instantiation happens much later.