Inherit from NSObject, not Object.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@165 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-03-23 03:25:35 +00:00
parent 85fa903749
commit f6f348ce37

View file

@ -1,11 +1,11 @@
#ifndef second_server_h
#define second_server_h
#include <objc/Object.h>
#include <objc/NSObject.h>
#include <objects/Array.h>
#include <objects/InvalidationListening.h>
@interface SecondServer : Object <InvalidationListening>
@interface SecondServer : NSObject <InvalidationListening>
{
Array *array;
}