Copyright (c) Qusay H. Mahmoud
22
IDL Structure (Interfaces)
lAn interface may inherit from multiple interfaces
lIt inherits all attributes and operations of its super-interfaces linterface JointSavingsAccount: JointAccount, SavingsAccount {
l   // attributes
l   // operations
l};
l
l