// // EXPConstant.h // Expression // // Created by Ashley on 28/02/2006. // Copyright 2006 __MyCompanyName__. All rights reserved. // #import @class EXPExpression; @interface EXPConstant : EXPExpression { NSString *_name; double _value; } - (id) initWithName:(NSString *) name; - (void) setName:(NSString *) name; - (NSString *) name; //- (double) result: (id)symbolTable; - (void) setValue:(double) value; - (double) value; - (void) dump; @end