RosettaCodeData/Task/Inheritance-Single/Objective-C/inheritance-single.m
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

34 lines
251 B
Objective-C

@interface Animal : NSObject
{
// ...
}
// ...
@end
@interface Dog : Animal
{
// ...
}
// ...
@end
@interface Lab : Dog
{
// ...
}
// ...
@end
@interface Collie : Dog
{
// ...
}
// ...
@end
@interface Cat : Animal
{
// ...
}
// ...
@end