Menu

#50 C++ reverse engineering: no association for container object

open
nobody
None
5
2012-10-15
2008-01-11
No

Reverse engineering fails to draw associations correctly
for objects in std containers.

For example, reverse engineering following C++ code:

include <vector>

class A1
{
int a1;
};

class A2
{
int a2;
};

class B
{
std::vector<A1*> ptrA1;
A2* ptrA2;
};

fails to draw association for ptrA1 in overview/class diagram. Association for ptrA2 is drawn correctly.

Discussion


Log in to post a comment.