home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / TicObject.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  568 b   |  24 lines

  1.  
  2. /* $Id: TicObject.h,v 1.1.1.1 1993/03/18 03:36:25 davis Exp $ */
  3.  
  4. #import "SubObject.h"
  5.  
  6. @interface TicObject:SubObject
  7. {
  8.     double    doubleValue;        /* A point on an axis    */
  9. }
  10.  
  11. /*  
  12.  *  We override initFromString: because it doesn't make sense for a 
  13.  *  TicObject to have a string value but no double value.  It must 
  14.  *  always have at least a double value -- the string value is optional.
  15.  */
  16. - initFromString:(const char *)aString;
  17.  
  18. - initFromString:(const char *)aString doubleValue:(double)aDouble;
  19.  
  20. - setDoubleValue:(double)aDouble;
  21. - (double)doubleValue;
  22.  
  23. @end
  24.