From a0d636cfe4a435b2bcaf22ca78b844dcd555d3b3 Mon Sep 17 00:00:00 2001 From: mccallum Date: Thu, 7 Mar 1996 00:39:28 +0000 Subject: [PATCH] Update for new server interface. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1085 72102866-910b-0410-8b05-ffd578937521 --- Testing/server.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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