mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
805a34014b
commit
489e4c5637
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue