// Copyright header to keep the Qt Insanity Bot happy. @protocol NSObject @end @interface NSObject @end @protocol MyProtocol - (void) someMethod; @end @interface MyClass: NSObject @end @implementation MyClass - (void) someMethod {} @end @implementation MyClass(MyCategory) - (void) anotherMethod;{} - (void) anotherMethod:(NSObject*)withAnObject{} @end