homepage › Forums › BridgePoint/xtUML Usage and Training › Creating Structured Data Types in OAL › Reply To: Creating Structured Data Types in OAL
January 13, 2016 at 7:05 pm
#5491
Participant
Why not just make the structures invisible classes and use the OAL for class accesses.
create a structure data type: user_structured_DT_t;
create object instance of struct_var of user_structured_DT_t;
struct_var.member_1 = 10;
struct_var.member_2 = “string”;
Of course if you wanted to allow them to be class members with accessible members, you’d have to allow: instance.struct.member notations.
This would all have to be added to the “Invisible” OOAofOOA subsystem. :-J