Copyright (c) Qusay H. Mahmoud
19
Advanced IDL: Structures
l
The IDL type
struct
defines a structure
l
Use a struct to group related data together
l
Example:
l
struct Name {
l
string firstName;
l
string lastName;
l
};
l
interface Customer { attribute Name name; };