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

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