interface ICamera { // ... } class MobilePhone { // ... } class CameraPhone: MobilePhone, ICamera { // ... }