Copyright (c) Qusay H. Mahmoud
21
Advanced IDL: typedefs
lA typedef is an alias, or another name for an existing data type
lExample:
l    typedef long age;
l     interface Customer {
l        age howOld;
l     }
lTypedefs of simple data types are mapped to the original (I.e. replaced by the more basic type)