mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 02:01:03 +00:00
20 lines
276 B
C
20 lines
276 B
C
|
#ifndef second_server_h
|
||
|
#define second_server_h
|
||
|
|
||
|
#include <objc/Object.h>
|
||
|
#include <objects/Array.h>
|
||
|
#include <objects/InvalidationListening.h>
|
||
|
|
||
|
@interface SecondServer : Object <InvalidationListening>
|
||
|
{
|
||
|
Array *array;
|
||
|
}
|
||
|
|
||
|
- init;
|
||
|
- addRemoteObject: o;
|
||
|
- array;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif
|