I need to get the static information of C++ program with CDT. No need to build the project, just to get the basic information(namespace, class, extends relation, method, call, field) and save them to database. Is there any code examples or opensource plugin? thx!

I have tried a lot of methods but they do not work very well. someone says that codan is a choice, but it doesn't work on my environment...

PS: CDT is necessary. I use Eclipse Indigo.

link|improve this question
feedback

1 Answer

Eclipse CDT has already built-in tools for extends relation, method call. It is Type Hierarchy view and Call Hierarchy view. You have to build Index of your project for all this tools to work.

link|improve this answer
This shows the views, but nothing about analyzing code like PC Lint, Covarity, Klocworks, etc. – Thomas Matthews Sep 6 '11 at 19:48
I want to extract the information from code and store them into database. It is used for software reengineering – Mark Sep 7 '11 at 3:41
@Mark you can copy expanded hierarchy in view to clipboard, if this helps to do what you want. – ks1322 Sep 7 '11 at 7:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.