Here is the sample code:

class Used {
public:
  void bar();
};

class Base { };

class Derived : public Base {
public:
  void foo(Used*);  // Dependency on class Used
};

Here is the collaboration diagram generated by doxygen:

[image: enter image description here]

Nice, but Derived depends on Used through the method foo, and I want to see
this on the diagram, like this:

[image: enter image description here]
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
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their 
applications. Written by three acclaimed leaders in the field, 
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/NeoTech
_______________________________________________
Doxygen-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/doxygen-develop

Reply via email to