diff --git a/Testing/server.h b/Testing/server.h index 949722cf6..29130de2f 100644 --- a/Testing/server.h +++ b/Testing/server.h @@ -2,8 +2,6 @@ #define _server_h #include -#include -#include #include #include @@ -22,7 +20,7 @@ struct myarray { }; @protocol ServerProtocol -- addObject: o; +- (void) addObject: o; - objectAt: (unsigned)i; - (unsigned) count; - print: (const char *)msg; @@ -57,9 +55,9 @@ struct myarray { @end #endif -@interface Server : NSObject +@interface Server : NSObject { - id theList; + id the_array; } @end