home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / Foundation / TCPTransport / RemoteTest.h < prev    next >
Text File  |  1996-04-17  |  389b  |  19 lines

  1. /* RemoteTest.h created by blaine on Tue 16-Apr-1996 */
  2.  
  3. #import <Foundation/NSDate.h>
  4. #import <Foundation/NSHost.h>
  5. #import <Foundation/NSString.h>
  6.  
  7. @interface RemoteTest : NSObject
  8. {
  9.         NSObject *otherObject;
  10.         NSHost *myHost;
  11. }
  12.  
  13. - (NSHost *)host;
  14. - (NSDate *)date;
  15. - (void)log:(NSString *)message;
  16. - (void)setOtherObject:(NSObject *)anObject;
  17. - (NSObject *)otherObject;
  18.  
  19. @end