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:
nice, derived
depends on used
through method foo
, , want see on diagram, this:
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
Post a Comment