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