Re: Cyclic import dependency causes compilation errors
Re: Cyclic import dependency causes compilation errors
- Subject: Re: Cyclic import dependency causes compilation errors
- From: Erik Buck <email@hidden>
- Date: Sat, 18 Feb 2006 21:56:59 -0500
Here is what they should have been:
#import <Cocoa/Cocoa.h>
@class LDAPAttributeValue
@interface LDAPAttribute : NSObject
{
@private
NSString * name;
NSMutableArray * values;
}
and
#import <Cocoa/Cocoa.h>
@class LDAPAttribute
@interface LDAPAttributeValue : NSObject
{
@private
NSString * value;
LDAPAttribute * parentAttribute;
}
Import whatever you want in the implementation files.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden