classUsed{public:voidbar();};classBase{};classDerived : publicBase{public:voidfoo(Used*);// Dependency on class Used};
Here is the collaboration diagram generated by doxygen:
Nice, but Derived depends on Used through the method foo, and I want to see
this on the diagram, like this:
Unfortunately, doxygen generates such dependency only if Used is aggregated
with Derived (used as a class member). Is there a way to show other kinds
of dependencies between classes?
Best regards, Mikhail Matrosov
Last edit: Mikhail Matrosov 2014-06-02
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Here is the sample code:
Here is the collaboration diagram generated by doxygen:
Nice, but Derived depends on Used through the method foo, and I want to see
this on the diagram, like this:
Unfortunately, doxygen generates such dependency only if Used is aggregated
with Derived (used as a class member). Is there a way to show other kinds
of dependencies between classes?
Best regards, Mikhail Matrosov
Last edit: Mikhail Matrosov 2014-06-02