libs-base/Examples/second-server.h
mccallum 489e4c5637 Inherit from NSObject, not Object.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@165 72102866-910b-0410-8b05-ffd578937521
1995-03-23 03:25:35 +00:00

19 lines
280 B
Objective-C

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