home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WWTCLKit / WWTCLVarValue.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  1.1 KB  |  46 lines

  1. /* Copyright 1993 Michael B. Johnson
  2.  * Permission to use, copy, modify, and distribute this
  3.  * software and its documentation for any non-commercial 
  4.  * purpose and without fee is hereby granted, provided that the 
  5.  * above copyright notice appears in all copies.  Michael B. Johnson
  6.  * makes no representations about the suitability of this
  7.  * software for any purpose.  It is provided "as is" without
  8.  * express or implied warranty.
  9.  *
  10.  * Permission to use, copy, modify or distribute this software
  11.  * and its documentation for any commercial purpose must be
  12.  * confirmed in writing with Michael B. Johnson.  He can be
  13.  * contacted at:
  14.  *              20 Ames St. E15-023G    
  15.  *              Cambridge, MA 02141
  16.  *              (617) 547 0563
  17.  *              
  18.  */
  19.  
  20.  
  21. #import <appkit/appkit.h>
  22. #import "tcl.h"
  23.  
  24. @interface WWTCLVarValue:Object
  25. {
  26.    char  *varName;
  27.    int   varNameSize;
  28.    char  *varValue;
  29.    int   varValueSize;
  30. }
  31.  
  32. - init;
  33. - initVarName:(char *)newVarName withValue:(char *)newValue copy:(BOOL)flag
  34. {
  35.  
  36.  
  37. }
  38.  
  39. - setVarName:(char *)newVarName copy:(BOOL)flag
  40. {
  41.  
  42. }
  43.  
  44.  
  45. @end
  46.