blob: 6515180f9220bad7c25fe3eb564d5e83d90c8011 [file] [log] [blame]
#import <objc/NSObject.h>
#import "myclass.h"
@implementation MyClass
{
IMP myImp;
}
- (id)init {
if (self = [super init])
{
SEL theSelector = @selector(init);
self->myImp = [self methodForSelector:theSelector];
}
return self;
}
@end