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