home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / DistributedObjects / remoteSpot / SpotView.h < prev    next >
Text File  |  1992-07-24  |  241b  |  17 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface SpotView:View
  5. {
  6.     id    spotList;
  7.     id    myThinker;
  8.     id    server;
  9. }
  10.  
  11. - initFrame:(const NXRect *)r;
  12. - lateInit;
  13. - mouseDown:(NXEvent *)theEvent;
  14. - drawSelf:(const NXRect *) rects :(int)rectCount;
  15.  
  16. @end
  17.