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

    What produces "Added by ClassView" ?

    Hi,
    I found several includes in my header files I haven't put there. Next to those includes there is a comment "// Added by ClassView".
    Does anybody know how it get there ?

    I use several plugins in visual studio C++ 6.0 but I fear that it is the class wizzard which is doing that '$§&(/" !

    When you google for it you may find a lot of sources whith that comment but I couldn't find out where it comes from.

    Thanks in advance.

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,398

    Re: What produces "Added by ClassView" ?

    If you add some member variable of the type "class CFirstClass" in the class CSecondClass and the declaration of the class CFirstClass is in the file "FirstClass.h" then ClassView adds the corresponding ]#include following with such comment:
    Code:
    #include "FirstClass.h"          // Added by ClassView
    into the "SecondClass.h"

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