home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WWTCLKit / WWTTSVConnector.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  811 b   |  32 lines

  1. /* SVConnector.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9. // name space protected for WavesWorld by the addition of the "WWTT" prefix
  10.  
  11. #import <objc/Object.h>
  12. #import <apps/InterfaceBuilder.h>
  13.  
  14. // An IB-Connector conforming object to hold our connections
  15. @interface WWTTSVConnector:Object <IBConnectors>
  16. {
  17.      id    source;       // the source of the connection
  18.      id    destination;  // what we're connecting to.
  19. }
  20.  
  21. - destination;
  22. - establishConnection;
  23. - nibInstantiate;
  24. - read:(NXTypedStream *)stream;
  25. - renewObject:old to:new;
  26. - setDestination:anObject;
  27. - setSource:anObject;
  28. - source;
  29. - write:(NXTypedStream *)stream;
  30.  
  31. @end
  32.