libs-base/Examples/second-client.h
mccallum 21ad4caee8 Make AppellationObject inherit from NSObject, not Object.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@395 72102866-910b-0410-8b05-ffd578937521
1995-04-17 22:02:48 +00:00

30 lines
391 B
Objective-C

#ifndef second_client_h
#define second_client_h
#include <objects/Connection.h>
#include <objects/Proxy.h>
#include "second-server.h"
@interface AppellationObject : NSObject
{
const char *appellation;
}
@end
@implementation AppellationObject
- setAppellation: (const char *)n
{
appellation = n;
return self;
}
- (const char *) appellation
{
return appellation;
}
@end
#endif