home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / CellScrollView / Controller.h < prev    next >
Text File  |  1991-10-10  |  514b  |  25 lines

  1. /* Controller.h 
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  *
  6.  */
  7.  
  8. #import <objc/Object.h>
  9. #import <objc/List.h>
  10.  
  11. @interface Controller:Object
  12. {
  13.   List    *fooObjects;
  14.   id    cellScrollView;    /* the scrollview that displays fooObjects */
  15.   id    cellMatrix;        /* the matrix contained in the scrollview  */
  16. }
  17.  
  18. - init;
  19. - free;
  20.  
  21. - addFooObject:sender;
  22. - deleteFooObjects:sender;
  23.  
  24. @end
  25.