11 lines
123 B
Text
11 lines
123 B
Text
interface ICamera {
|
|
// ...
|
|
}
|
|
|
|
class MobilePhone {
|
|
// ...
|
|
}
|
|
|
|
class CameraPhone: MobilePhone, ICamera {
|
|
// ...
|
|
}
|