home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 (1993) / nebula.bin / SourceCode / DBkit / AssociationExample / QualifiedAssociation.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-16  |  692 b   |  31 lines

  1. /* QualifiedAssociation.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. #import <appkit/appkit.h>
  11. #import <dbkit/dbkit.h>
  12.  
  13. #import <dbkit/DBAssociation.h>
  14.  
  15. @interface QualifiedAssociation:DBAssociation
  16. {
  17.     DBQualifier * dbQualifier;
  18.     
  19. }
  20.  
  21. /* C Function to install the new association */
  22. extern QualifiedAssociation * setUpAssociation(DBFetchGroup *    dbFetchGroup);
  23.                                                 
  24. /* Override the setValue methods */
  25. - setValue:value;
  26. /* new methods */
  27. - setQualifier: qualifier;
  28. - qualifier;
  29.  
  30. @end
  31.