home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Database / CardFile_Source / CardFile_BareBones / CardFileController.h < prev    next >
Encoding:
Text File  |  1993-11-24  |  630 b   |  39 lines

  1. /*
  2.  *
  3.  * CardFileController.h
  4.  *
  5.  *    You may freely copy, distribute and reuse the code in this example.
  6.  *    NeXT disclaims any warranty of any kind, expressed or implied, as to
  7.  *    its fitness for any particular use.
  8.  *
  9.  */
  10.  
  11. #import <appkit/appkit.h>
  12. #import "Customer.h"
  13.  
  14. @interface CardFileController:Object
  15. {
  16.     id    customerList, currentCustomer;
  17.  
  18.     // outlets    
  19.     id    nameField;
  20.     id    uidField;
  21. }
  22.  
  23. - init;
  24. - awakeFromNib;
  25. - free;
  26.  
  27. - addCustomer:sender;
  28. - deleteCustomer:sender;
  29. - nextCustomer:sender;
  30. - prevCustomer:sender;
  31. - nameChanged:sender;
  32. - uidChanged:sender;
  33.  
  34. - firstCustomer;
  35. - updateInspector;
  36. - clearInspector;
  37.  
  38. @end
  39.