home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / OTC_EOFBetaExamples_V1.0 / EOFramework / AccessLayer / AccessLevel.h < prev    next >
Encoding:
Text File  |  1994-07-30  |  875 b   |  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.  *    AccessLevel
  9.  *
  10.  *    Inherits From:        NSObject
  11.  *
  12.  *    Conforms To:        None
  13.  *
  14.  *    Declared In:        AccessLevel.h
  15.  *
  16.  *    Class Description
  17.  *
  18.  *        Demonstrates programmatic connect, select, and fetch 
  19.  *        operations via the Access Level of the Adaptor Layer.
  20.  *
  21.  *
  22.  *------------------------------------------------------------------------*/
  23. #import <foundation/NSObject.h>
  24.  
  25.  
  26.  
  27. @interface AccessLevel : NSObject
  28. {
  29.     id    model;
  30.     id    adaptor;
  31.     id    context;
  32.     id    channel;
  33.  
  34.     id    modelPath;
  35.     id    messageConsole;
  36.     id    resultConsole;
  37.     id    connectButton;
  38.     id    selectButton;
  39. }
  40.  
  41. - connect: sender;
  42. - select: sender;
  43.  
  44.  
  45. @end
  46.