For the archives: Joar's suggestion did the trick. Now it's all working just the way I want.

Thanks to all those who thought about it.

dkj


On 2009-09-13, at 15:08 , Joar Wingfors wrote:

Foo.h
==========
@class Bar; // <- Forward declaration of the Bar class
@interface Foo : NSObject {
        @private
        Bar *_bar;
}
@end
==========

Foo.m
==========
#import "Bar.h" // <- The forward declaration is "resolved" here
#import "Foo.h"
@implementation Foo
@end
==========

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to