home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / OTC_EOFBetaExamples_V1.0 / EOFramework / Delegation / EOFDelegate.h < prev    next >
Encoding:
Text File  |  1994-05-22  |  1.4 KB  |  49 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.  *    EOFDelegate
  9.  *
  10.  *    Inherits From:        NSObject
  11.  *
  12.  *    Conforms To:        None
  13.  *
  14.  *    Declared In:        EOFDelegate.h
  15.  *
  16.  *    Class Description
  17.  *
  18.  *        EOFDelegate implements all delegate methods contained 
  19.  *        within the EOF framework and provides a means by which
  20.  *        to trace these notification sequences.
  21.  *
  22.  *        Delegate methods that allow a choice of return values
  23.  *        optionally invoke an alert panel so that the user may
  24.  *        have a chance to interactively determine the delegate's
  25.  *        response.  Default values that do not effect the normal
  26.  *        EOF processing sequence will be returned wherever possible.
  27.  *
  28.  *        Implementation of this class has been divided into categories
  29.  *        for readability.  There are separate [.hm] files for each.
  30.  *        The categories are Adaptor, Database, and Controller and 
  31.  *        correspond to major component pieces of EOF.
  32.  *
  33.  *
  34.  *------------------------------------------------------------------------*/
  35. #import <eointerface/eointerface.h>
  36. #import <eoaccess/eoaccess.h>
  37. #import <foundation/NSObject.h>
  38. #import <appkit/appkit.h>
  39. #import "AppController.h"
  40.  
  41.  
  42.  
  43.  
  44. @interface EOFDelegate : NSObject
  45. {
  46. }
  47.  
  48. @end
  49.