home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / OTC_EOFBetaExamples_V1.0 / NSFoundation / ClassCluster / AppController.h next >
Encoding:
Text File  |  1994-07-31  |  1.0 KB  |  46 lines

  1. /*--------------------------------------------------------------------------
  2.  *
  3.  *     You may freely copy, distribute, and reuse the code in this example.
  4.  *     SHL Systemhouse disclaims any warranty of any kind, expressed or  
  5.  *    implied, as to its fitness for any particular use.
  6.  *
  7.  *
  8.  *    AppController
  9.  *
  10.  *    Inherits From:        NSObject
  11.  *
  12.  *    Conforms To:        None
  13.  *
  14.  *    Declared In:        AppController.h
  15.  *
  16.  *    Class Description
  17.  *
  18.  *        Coordinates actions on and display of the BetterRealMutableArray.
  19.  *        Application demonstrates subclassing of a class cluster.
  20.  *
  21.  *------------------------------------------------------------------------*/
  22. #import <foundation/foundation.h>
  23. #import <appkit/appkit.h>
  24.  
  25.  
  26.  
  27.  
  28. @interface AppController:NSObject
  29. {
  30.     id    objectSelector;
  31.     id    visualArray;
  32.     id    window;
  33.     
  34.     id    array;
  35. }
  36.  
  37. /*--------------------------------------------------------------------------
  38.  *    Target / action methods
  39.  *------------------------------------------------------------------------*/
  40. - delete:sender;
  41. - empty:sender;
  42. - insert:sender;
  43.  
  44.  
  45. @end
  46.