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?
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to