Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2008 class view missing classes

I've just ported a large project from an older version of Visual C++ to VS2008 and notice that the class view is mising a bunch of my classes. Looking at the solution view, the header files declaring those classes are present, so I'd expect to see them in class view. Any reason why certain classes would be excluded, or is there any way to refresh class view to include all the classes in the solution ?

like image 667
SmacL Avatar asked Feb 02 '11 11:02

SmacL


People also ask

How do I display hierarchy in Visual Studio?

Right click on the class in "Class View" and choose "View Class Diagram". If the diagram doesn't show the level of detail you want for the hierarchy, right click on the box for the class in the diagram, and choose "Show Derived Classes".

What is the class view?

Class View displays the elements of an application. The upper pane displays namespaces, types, interfaces, enumerations, and classes, and the lower pane displays the members that belong to the type selected in the upper pane.

What is class view window in vb net?

Class View, which is a programmatic view of symbols in your code, for example, namespaces, classes, methods, and functions.


1 Answers

Have you tried deleting the .ncb and the .pch, and all the .o files, then a full rebuild? I find that this often fixes my intellisense problems, and it may be related.

like image 61
Dave Avatar answered Sep 27 '22 17:09

Dave