mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 17:51:01 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1 72102866-910b-0410-8b05-ffd578937521
30 lines
389 B
Objective-C
30 lines
389 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 : Object
|
|
{
|
|
const char *appellation;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation AppellationObject
|
|
|
|
- setAppellation: (const char *)n
|
|
{
|
|
appellation = n;
|
|
return self;
|
|
}
|
|
|
|
- (const char *) appellation
|
|
{
|
|
return appellation;
|
|
}
|
|
|
|
@end
|
|
|
|
#endif
|