home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / DBController.h < prev    next >
Encoding:
Text File  |  1995-11-03  |  640 b   |  24 lines

  1. /* DBController.h
  2.  * A utility class used to communicate with EOF.
  3.  * 
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  *
  8.  * Written by Paul Marcos, NeXT Software Engineer
  9.  */
  10.  
  11. #import <Foundation/NSObject.h>
  12. #import <Foundation/NSString.h>
  13. #import <EOAccess/EODatabaseDataSource.h>
  14.  
  15. @interface DBController : NSObject
  16. {
  17. }
  18.  
  19. - eoDatabaseDataSource;
  20. - (EOQualifier*)qualifierWithEntity: (EOEntity*)entity format: (NSString*)format arg1: (NSString*)arg1 arg2: (NSString*)arg2;
  21.  
  22. @end
  23.  
  24.