Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a tool that can parse C++ files within a project and generate UML from it?

share|improve this question
same question: stackoverflow.com/questions/1407948/… – Mikhail Apr 29 '11 at 7:57

8 Answers

up vote 17 down vote accepted

Here are a few options:

Step-by-Step Guide to Reverse Engineering Code into UML Diagrams with Microsoft Visio 2000 - http://msdn.microsoft.com/en-us/library/aa140255(office.10).aspx

BoUML - http://bouml.free.fr/features.html

StarUML - http://staruml.sourceforge.net/en/

Reverse engineering of the UML class diagram from C++ code in presence of weakly typed containers (2001) - http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.27.9064

Umbrello UML Modeller - http://uml.sourceforge.net/

A list of other tools to look at - http://plg.uwaterloo.ca/~migod/uml.html

share|improve this answer
Reaccepted to the more thorough answer. – Gerald Kaszuba May 1 '12 at 22:59
BoUML (bouml.fr) is available for Linux, Windows and Mac. – Rhubbarb Jul 18 '12 at 12:04
Umbrello seems to be for Linux/KDE only. – Rhubbarb Jul 18 '12 at 12:06

I believe Enterprise Architect can do that.

share|improve this answer
1  
Indeed it does, and does well. I've been using it for years, and to me it's by far the best price/performance tool for it (among those I used). I've tried StarUML and Together also - the first has potential, but is still incomplete. The second is painfully slow. – Fabio Ceconello Jan 5 '09 at 22:45
I didn't try Rational Rose, though, since it's well above my acceptable price range. – Fabio Ceconello Jan 5 '09 at 22:46

It its just diagrams that you want, doxygen does a pretty good job.

share|improve this answer
I just got complete class hierarchy on a +300K LOC project with Doxygen, it really does a pretty well job! – HugoFS May 7 at 14:32

UML Studio does this quite well in my experience, and will run in "freeware mode" for small projects.

share|improve this answer
(Runs only on Windows.) – Rhubbarb Jul 18 '12 at 11:56

I find that Wikipedia can be a great source of information about such tools, especially for comparison tables. There's a page on UML tools. See in particular the reverse engineered languages column.

share|improve this answer

Whoever wants UML deserves Rational Rose :)

share|improve this answer
good program but very expensive ! – ak3nat0n Apr 2 '09 at 22:09
The link in this answer is out of date. The current link is www-01.ibm.com/software/rational/products/swarchitect/cpp – Dan Nissenbaum Sep 14 '12 at 13:13

I have used Rational Rose and Rational Rhapsody for reverse engineering large projects. I would prefer Rational Rhapsody for getting the UML class files for C++ !

share|improve this answer

StarUML does just that and it is free. Unfortunately it hasn't been updated for a while. There were a couple of offshoot projects (as the project admins wouldn't allow it to be taken over) but they too have died a death.

share|improve this answer
(Runs only on Windows.) – Rhubbarb Jul 18 '12 at 11:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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