Book a Demo

Author Topic: reverse engineered associations  (Read 1949 times)

colingr

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
  • that's not a bug, it's a feature...
    • View Profile
reverse engineered associations
« on: July 20, 2005, 03:38:02 pm »
when I reverse engineer a group of C++ classes, EA imports the attribute access correctly, but when it creates an assaciation between the classes it specifies the access for the target role as public.

for example if I have
Code: [Select]
class ClassA
{
// some stuff
};

class ClassB
{
private:
  ClassA& m_a;
};


EA shows this as

does anyone know of an option to fix this?