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