home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / 3.3Headers / eoaccess / EOQuotedExpression.h < prev    next >
Encoding:
Text File  |  1994-05-15  |  665 b   |  28 lines

  1. //  EOQuotedExpression.h
  2. //  Copyright (c) 1994, NeXT Computer, Inc. All rights reserved.
  3.  
  4. // This class is used to quote another object's expressionValue.  It's used
  5. // internally by the Framework; you should never need to create or use one
  6. // yourself.
  7.  
  8. #import    "EOExpressionArray.h"
  9.  
  10. #import <foundation/NSArray.h>
  11. #import <foundation/NSData.h>
  12. #import <foundation/NSDictionary.h>
  13. #import <foundation/NSObject.h>
  14. #import <foundation/NSString.h>
  15.  
  16. @interface EOQuotedExpression:NSObject <NSCopying>
  17. {
  18.     id _expression;
  19.     NSString *_quote;
  20.     NSString *_escape;
  21. }
  22.  
  23. - initWithExpression:expression quote:(NSString *)quote 
  24.     escape:(NSString *)escape;
  25.  
  26. @end
  27.  
  28.