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



The information in this article applies to:

  • Microsoft Visual C++ 4.0
  • Microsoft Visual C++ 4.1
  • Microsoft Visual C++, 32-bit Enterprise Edition 4.2
  • Microsoft Visual C++, 32-bit Professional Edition 4.2

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();
     };
   }
				

Modification Type:MajorLast Reviewed:12/8/2003
Keywords:kbbug kbfix kbide kbVC500fix KB140439