Quantcast
Channel: CodeGuru Forums - Visual C++ Programming
Viewing all articles
Browse latest Browse all 3046

Create complete cross reference.

$
0
0
There are some tools like DoxyGen, that will give partial cross references; but so far I have found all of them lacking. For example, one key area of focus for this effort is all the places where objects are created, copied (and moved), destructed.

Consider:
Code:

class ImplicitConstructor
{
public:
    void AFunction();
};

Code:

class TestBed1
{
  public:
    void Test1()
    {
      ImplicitConstructor instance;
    }
};

Now imagine rthere are hundreds of placess where class ImplicitConstructor is created, passed by value (aka copied).... And that there are hundreds of classes to analyze...

NOTE: I am looking for something that produces an OUTPUT, not something individually interactive in a GUI...

TIA!

Viewing all articles
Browse latest Browse all 3046

Trending Articles