I want to draw class hierarchies for some C++ projects. I have the information in the following format in files.
class x: public Y
class Z: public Y
class R: public X .....and so on..
I have around 1000 class for the project. Can anyone suggest how should I go about doing it... I mean what tools... what process?