Hi Folks
I need to create UML class diagrams and then generate C++ code from that.
I need to use stl containers like std::vector for my own classes.
Specific example:
Class Person contains attribute std::vector which has an 0…* multiplicity to class Address.
I managed to define a custom type for my attribute in the Person class but I loose my aggregration to the Address class in the diagram.
How do I solve this?
Thank you for your time. Any help is appreciated.