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@1078 72102866-910b-0410-8b05-ffd578937521
18 lines
219 B
Objective-C
18 lines
219 B
Objective-C
#ifndef second_server_h
|
|
#define second_server_h
|
|
|
|
#include <Foundation/NSObject.h>
|
|
#include <objects/Array.h>
|
|
|
|
@interface SecondServer : NSObject
|
|
{
|
|
Array *array;
|
|
}
|
|
|
|
- init;
|
|
- addRemoteObject: o;
|
|
- array;
|
|
|
|
@end
|
|
|
|
#endif
|