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

ID: Q140439


The information in this article applies to:
  • Microsoft Visual C++, 32-bit Editions, versions 4.0, 4.1, 4.2


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 : kbide kbVC kbVC500fix kbGrpDSTools
Version : 4.0 4.1 4.2
Platform : NT WINDOWS
Issue type : kbbug


Last Reviewed: July 22, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.