yesraaj
yesraaj

Reputation: 47990

Create class diagram from c++ source?

Is there any free tools available for generating class diagram from c++ source files and if possible for mfc source files too.

Upvotes: 22

Views: 26423

Answers (4)

fa.
fa.

Reputation: 2486

We use doxygen with graphviz support

Upvotes: 33

Gunee
Gunee

Reputation: 451

Umbrello is probably fine for projects with a limited number of classes, and certainly requires manual intervention for tuning. I imagine doxygen/graphviz is more suitable for larger projects.

Upvotes: 0

Void - Othman
Void - Othman

Reputation: 3481

I've had some success with Umbrello (a KDE-based app). It allows you to import code to create a model, that can then be used to generate UML diagrams.

Upvotes: 0

Dan Breslau
Dan Breslau

Reputation: 11522

You could try SourceNavigator. I'm not sure what the current state of the project is, but here's a place to start.

Upvotes: 1

Related Questions