home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / OTC_EOFBetaExamples_V1.0 / EOFramework / KeyValueCoding / AppController.h next >
Encoding:
Text File  |  1994-07-31  |  1.0 KB  |  55 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.  *    AppController
  8.  *
  9.  *    Inherits From:        NSObject
  10.  *
  11.  *    Conforms To:        None
  12.  *
  13.  *    Declared In:        AppController.h
  14.  *
  15.  *    Class Description
  16.  *
  17.  *        Application controller for EO key value coding example.
  18.  *
  19.  *
  20.  *------------------------------------------------------------------------*/
  21. #import <appkit/appkit.h>
  22. #import <eointerface/eointerface.h>
  23. #import <eoaccess/eoaccess.h>
  24. #import <foundation/foundation.h>
  25.  
  26. @class Catalog;
  27.  
  28.  
  29.  
  30. @interface AppController:NSObject
  31. {
  32.     id        controller;
  33.     id        ivarArray;
  34.     id        window;
  35.     id        textDisplay;
  36.     id        traceSetting;
  37.     id        traceDelay;
  38.     id        console;
  39.  
  40.     id        objectName;
  41.     id        objectPrice;
  42.     id        objectTitle;
  43.  
  44.     BOOL    startup;
  45.  
  46.     
  47. }
  48.  
  49. - display:(NSArray *)argArray;
  50. - console:(NSArray *)argArray;
  51. - updateObjectView: (Catalog *)newObject;
  52.  
  53.  
  54. @end
  55.