FIX: Namespace Scoped Classes Don't Show Up in ClassViewLast reviewed: September 19, 1997Article ID: Q140439 |
The information in this article applies to:
SYMPTOMSClasses defined inside a namespace do not show up in the MSDEV's ClassView.
STATUSMicrosoft 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();
};
}
Keywords : vcbuglist400 vcfixlist500 VwbIss kbtool Version : 4.0 4.1 4.2 Platform : NT WINDOWS Issue type : kbbug Solution Type : kbfix |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |