I am currently learning objective-c from a book. In one example, before the class interface of a particular header file, it reads @class followed by two protocol declarations.
@class Thing;
@protocol Foo
-(void)foo:(Thing *);
@end;
@protocol Bar
-(void)bar:(Thing *);
@end;
@interface Thing : NSObject <Foo, Bar>
...
I understand that @class is used to prevent circular references, however I do not understand what is going on below that. Why are the protocols declared there, rather than in the @interface block?