home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 (1993) / nebula.bin / SourceCode / DBkit / TableViewExample / TableViewController.h < prev    next >
Encoding:
Text File  |  1992-08-14  |  673 b   |  35 lines

  1. /* TableViewController.h
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  *
  6.  * Written by: Mai Nguyen, NeXT Developer Support
  7.  *
  8.  *
  9.  */
  10.  
  11. #import <appkit/appkit.h>
  12. #import <dbkit/dbkit.h>
  13. #import <libc.h>
  14.  
  15. @interface TableViewController:Object
  16. {
  17.     id    dbModule;
  18.     id    dbDatabase;
  19.     id    dbFetchGroup;
  20.     id    dbAttributes;
  21.     id    rootEntity;
  22.     id    dbTableView;
  23.     id    window;
  24.        id     dbQualifier;
  25.     id  propList;
  26. }
  27.  
  28. - appDidInit:sender;
  29. - showAll:sender;
  30. - initTableView;
  31. - (BOOL)db:aDb willEvaluateString:(const char*)aString usingBinder:aBinder;
  32.  
  33.  
  34. @end
  35.