From-SVN: r38261
This commit is contained in:
Ovidiu Predescu 2000-12-14 22:02:18 +00:00
parent c097fab647
commit 2e82aa0fd9
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
@protocol Foo
- (void)foo;
@end
@interface Foo_c <Foo>
{
}
- (void)foo;
@end
@implementation Foo_c
- (void)foo
{
}
@end