CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2002
    Location
    Germany
    Posts
    63

    VS6 bug in class view (nested template), workaround ?

    Hi.
    Is there a way to make Visual Studio 6.0 to display a nested template class ?

    To see what I mean just write the following:
    Code:
    class CFoo
    {
      template <int a>
      class CBar
      {
      };
    };
    You will not see the class CBar.

    deleting the .opt and .ncb files will not help !

    So, is there a possibility to trick the class view ?

  2. #2
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: VS6 bug in class view (nested template), workaround ?

    Interesting, I wasn't aware of this.
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured