How is this possible?
How is this possible?
- Subject: How is this possible?
- From: Don Arnel <email@hidden>
- Date: Sun, 20 Apr 2008 11:25:02 -0400
I have two different class objects that need to know about each other
(see below). But if I include the header from one class inside the
header of the other class the compiler complains. Is this even possible?
ClassOne.h:
----------------
#import "ClassTwo.h"
@interface ClassOne : NSObject {
ClassTwo *objectTwo;
}
@end
----------------
ClassTwo.h:
----------------
#import "ClassOne.h"
@interface ClassTwo : NSObject {
ClassOne *objectOne;
}
@end
----------------
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden