c++ - Class dependency graph with doxygen -


i want generate class dependency graph large project in c++. i'm trying doxygen. here sample code:

class used { public:   void bar(); };  class base { };  class derived : public base { public:   void foo(used*);  // dependency on class used }; 

here collaboration diagram generated doxygen:

enter image description here

nice, derived depends on used through method foo, , want see on diagram, this:

enter image description here

unfortunately, doxygen generates such dependency if used aggregated derived (used class member). there way show other kinds of dependencies between classes?

or maybe can suggest different tool generate such dependency graph?

i tried use cppdepend, want, unfortunately has issues dependencies in big project (though dev team open communication , has fixed couple of bugs reported).


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -