|
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
|
|
}
|