Knowledge Base

FIX: Namespace Scoped Classes Don't Show Up in ClassView

Article ID: 140439

Article Last Modified on 12/8/2003


APPLIES TO


This article was previously published under Q140439

SYMPTOMS

Classes defined inside a namespace do not show up in the MSDEV's ClassView.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug was corrected in Visual C++ version 5.0.

MORE INFORMATION

Sample Code to Reproduce Problem

   //Header.h
   // You won't see MyNameSpace::MyClass in ClassView
   namespace MyNameSpace
   {
     class MyClass
     {
       public:
       MyClass();
     };
   }
				

Additional query words: kbVC400bug

Keywords: kbbug kbfix kbide kbvc500fix KB140439