home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / TicObject.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  614 b   |  27 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10.  
  11. /* $Id: TicObject.h,v 1.4 1993/05/04 16:23:07 davis Exp $ */
  12.  
  13. #import "SubObject.h"
  14.  
  15. @interface TicObject:SubObject
  16. {
  17.     double    doubleValue;        /* A point on an axis    */
  18. }
  19.  
  20. - initFromString:(const char *)aString;
  21. - initFromString:(const char *)aString doubleValue:(double)aDouble;
  22.  
  23. - setDoubleValue:(double)aDouble;
  24. - (double)doubleValue;
  25.  
  26. @end
  27.