Yep, that made the trick! Thanks a lot, chr
On Fri, Jan 16, 2009 at 9:07 AM, Quincey Morris <quinceymor...@earthlink.net> wrote: > On Jan 16, 2009, at 00:38, Christian Giordano wrote: > >> // RemoteLoader.h >> @protocol RemoteLoaderDelegate >> -(void) onLoadingFail:(RemoteLoader *)loader; >> -(void) onLoadingFinish:(RemoteLoader *)loader; >> -(void) onLoadingProgress:(RemoteLoader *)loader; >> @end >> >> @interface RemoteLoader : NSObject >> { >> ... >> } >> ... >> @end >> >> I get: "error: syntax error before 'RemoteLoader'" > > Your protocol has a forward reference, so this: > >> @class RemoteLoader; >> @protocol RemoteLoaderDelegate >> -(void) onLoadingFail:(RemoteLoader *)loader; >> -(void) onLoadingFinish:(RemoteLoader *)loader; >> -(void) onLoadingProgress:(RemoteLoader *)loader; >> @end > > should take care of it. > > > _______________________________________________ > > 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/christian%40nuthinking.com > > This email sent to christ...@nuthinking.com > _______________________________________________ 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