Re: Subclass Import Issues
Re: Subclass Import Issues
- Subject: Re: Subclass Import Issues
- From: Nick Zitzmann <email@hidden>
- Date: Fri, 31 Dec 2004 00:13:34 -0700
On Dec 30, 2004, at 9:13 PM, Ilan Volow wrote:
--Parent.h
#import "Child.h"
@interface Parent
{
Child *myChild;
}
Change this line:
#import "Child.h"
...to this:
@class Child;
Then you can import Child.h inside the source file.
Nick Zitzmann
<http://www.chronosnet.com/>
_______________________________________________
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