[Doxygen-users] How to generate collaboration graph with all classes that depend on the class will
Brought to you by:
dimitri
|
From: Kulagin <ser...@gm...> - 2022-12-02 12:01:01
|
Consider the program:
class MyClass1 {public:
int integer{};};
class MyClass2 {public:
MyClass1* myClass1Ptr{};};
class MyClass3 {public:
void DoSomething(MyClass1* myClass1Ptr);};
void main() {
MyClass1{};}
I checked out getting started guide and generated the documentation for the
test solution. What I'd like to have is a collaboration graph for MyClass1
to include all the classes that directly depend on it, not just things it
depends on.[image: Classdiagram1.png]
I did find the CALL_GRAPH option for the individual functions and see what
functions call them, but that's not what I want, as you can see. Is there a
way to do this in Doxygen?
|