home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / DistributedObjects / remoteSpot / SpotView.h < prev    next >
Encoding:
Text File  |  1993-02-18  |  241 b   |  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.