Can doxygen+graphviz generate a list or a graph of all usage of a class/struct/typedef/enum/etc.? It would be like a caller graph, but not for functions.
The ideal graph would be like a reversed collaboration diagram. It would have all classes that uses the class of interest have an edge pointing to the node of the class of interest.
A list of (all function that uses the class of interest) and/or (all classes that have a member of the class of interest) would also be nice.
Is there such a functionality in doxygen+graphviz yet? Thanks.