1

i am currently working on a project using visual studio 2008, vc++. i want to view the class diagram of my code, but i dont see any "class diagram" option when i click add new item, please do help me.. thanks..

skaffman
  • 398,947
  • 96
  • 818
  • 769
jaymin
  • 41
  • 3

2 Answers2

0

Class diagrams and not supported for C++, only C# and VB. Sorry. It's a Visual Studio limitation.

0

Visual Studio doesn't provide a class digram for C++. There are a plethora of UML tools available (and maybe some pre-IBM-hegemony notations) available which will, to varying degrees, reverse engineer object oriented C++.

Pete Kirkham
  • 48,893
  • 5
  • 92
  • 171
  • hi..could u give me an example of a few..? – jaymin May 16 '10 at 09:32
  • http://stackoverflow.com/search?q=[uml]+reverse+engineer has many questions asking much the same, http://en.wikipedia.org/wiki/List_of_UML_tools has a list of all tools I've heard of. I'm not aware of any which handle template metaprogramming very well. This question http://stackoverflow.com/questions/2281419/reverse-engineering-code-into-a-uml-class-diagram-in-vs-2010 is similar to yours but relating to VS 2010 – Pete Kirkham May 17 '10 at 07:32