3

I'd like to graph out my classes (structs) in something UML-like and have the supporting shell code be generated for me in C. Does anything like this exist? Freeware && Eclipse plugins preferred.

Joel B
  • 12,082
  • 10
  • 61
  • 69

1 Answers1

1

Doxygen use the dot tool to build graphs

yEd is a good graph renderer tool

Zest is a good toolbox for drawing graph

If your header (*.h) files are well written you may parse them with xText and a subset of C grammar to drive yEd, zest or dot.

albert
  • 8,285
  • 3
  • 19
  • 32
Aubin
  • 14,617
  • 9
  • 61
  • 84