[Doxygen-users] Problems with collaboration diagrams and STL containers
Brought to you by:
dimitri
From: Tod R. <tr...@ya...> - 2008-05-23 14:43:44
|
Hi, I'm having trouble when trying to generate collab diagrams with classes that use STL containers that are containing a typedef...this despite having the builting STL support turned on. For example, the following 'foobar' does not show up in the collab diagram for Dummy: typedef float foo; class Dummy { vector<foo> foobar; }; Adding a dummy header file defining vector<> didn't seem to help either. Only manually substituting the typedef'd type inside the vector causes it to show up. Is there any way to get this to work other than modifying my code? Thanks! |