Inherit from NSObject, not Object.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@191 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-03-23 03:55:23 +00:00
parent 15a534bcd6
commit 51be0428b1

View file

@ -2,9 +2,9 @@
#ifndef _first_server_h
#define _first_server_h
#include <objc/Object.h>
#include <foundation/NSObject.h>
@interface FirstServer : Object
@interface FirstServer : NSObject
- sayHiTo: (char *)name;