Copyright (c) Qusay H. Mahmoud
19
Advanced IDL: Structures
lThe IDL type struct defines a structure
lUse a struct to group related data together
lExample:
lstruct Name {
l    string firstName;
l    string lastName;
l};
linterface Customer { attribute Name name; };