libs-base/Examples/second-server.h
Andrew McCallum 3f093c4909 Change all include objects/*.h to include gnustep/base/*.h.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1433 72102866-910b-0410-8b05-ffd578937521
1996-04-17 18:40:03 +00:00

18 lines
224 B
Objective-C

#ifndef second_server_h
#define second_server_h
#include <Foundation/NSObject.h>
#include <gnustep/base/Array.h>
@interface SecondServer : NSObject
{
Array *array;
}
- init;
- addRemoteObject: o;
- array;
@end
#endif