13 lines
287 B
D
13 lines
287 B
D
|
|
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
|
||
|
|
}
|