mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-24 03:41:20 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@18931 72102866-910b-0410-8b05-ffd578937521
43 lines
968 B
Objective-C
43 lines
968 B
Objective-C
/* FIXME: not used! just an unimplemented idea. (See NSDistant*)
|
|
*/
|
|
@implementation STScriptingServer
|
|
{
|
|
|
|
}
|
|
+ serverWithRegisteredName:(NSString *)name
|
|
host:(NSString *)host
|
|
{
|
|
return [STDistantScriptingServer serverWithRegisteredName:name host:host];
|
|
}
|
|
- registerLocallyWithName:(NSString *)name
|
|
{
|
|
NSLog(@"Not implemented: registerLocallyWithName");
|
|
}
|
|
|
|
- createConversation;
|
|
- conversationWithInfo:(NSDictionary*)dict;
|
|
@end
|
|
|
|
@implementation STLocalScriptingServer
|
|
{
|
|
|
|
}
|
|
+ serverWithRegisteredName:(NSString *)name
|
|
host:(NSString *)host;
|
|
- registerLocallyWithName:(NSString *)name;
|
|
|
|
- createConversation;
|
|
- conversationWithInfo:(NSDictionary*)dict;
|
|
@end
|
|
|
|
@implementation STDistantScriptingServer
|
|
{
|
|
|
|
}
|
|
+ serverWithRegisteredName:(NSString *)name
|
|
host:(NSString *)host;
|
|
- registerLocallyWithName:(NSString *)name;
|
|
|
|
- createConversation;
|
|
- conversationWithInfo:(NSDictionary*)dict;
|
|
@end
|