home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / dbkit / expressionValues.h < prev    next >
Text File  |  1992-03-27  |  681b  |  23 lines

  1. /*
  2. **      expressionValues.h
  3. **      Database Kit, Release 3.0
  4. **      Copyright (c) 1992, NeXT Computer, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import <objc/objc.h>
  8.  
  9. /*
  10. ** This protocol is used to build ascii expressions from the objects of the
  11. **  dbkit.  isDeferredExpression is used to delay the call to expressionValue;
  12. **  it should return YES if the expressionValue/stringValue call is to be
  13. **  deferred until the last possible moment.  This is useful when building
  14. **  expressions that take input from the user interface, or from objects
  15. **  that change state often.
  16. */
  17. @protocol DBExpressionValues
  18.  
  19. - (const unsigned char*)expressionValue;
  20. - (BOOL)isDeferredExpression;
  21.  
  22. @end
  23.