libs-base/Examples/second-client.h
Andrew McCallum 3f093c4909 Change all include objects/*.h to include gnustep/base/*.h.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1433 72102866-910b-0410-8b05-ffd578937521
1996-04-17 18:40:03 +00:00

30 lines
401 B
Objective-C

#ifndef second_client_h
#define second_client_h
#include <gnustep/base/Connection.h>
#include <gnustep/base/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