RosettaCodeData/Task/Inheritance-Multiple/D/inheritance-multiple-1.d

13 lines
287 B
D
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
interface Camera {
// member function prototypes and static methods
}
interface MobilePhone {
// member function prototypes and static methods
}
class CameraPhone: Camera, MobilePhone {
// member function implementations for Camera,
// MobilePhone, and CameraPhone
}