Answer the question
In order to leave comments, you need to log in
How to visualize static dependencies in C++ code?
There is a big C++ project under Visual Studio. I would like to visualize the dependencies between its entities in order to better understand the structure of the project. The first thing that comes to mind is the class dependency graph. How to build it?
Consider the following code example:
class Used {
public:
void bar();
};
class Base { };
class Derived : public Base {
public:
void foo(Used*); // Dependency on class Used
};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question