home *** CD-ROM | disk | FTP | other *** search
- /* Copyright 1993 Michael B. Johnson
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any non-commercial
- * purpose and without fee is hereby granted, provided that the
- * above copyright notice appears in all copies. Michael B. Johnson
- * makes no representations about the suitability of this
- * software for any purpose. It is provided "as is" without
- * express or implied warranty.
- *
- * Permission to use, copy, modify or distribute this software
- * and its documentation for any commercial purpose must be
- * confirmed in writing with Michael B. Johnson. He can be
- * contacted at:
- * 20 Ames St. E15-023G
- * Cambridge, MA 02141
- * (617) 547 0563
- *
- */
-
-
- #import <appkit/appkit.h>
- #import "tcl.h"
-
- @interface WWTCLVarValue:Object
- {
- char *varName;
- int varNameSize;
- char *varValue;
- int varValueSize;
- }
-
- - init;
- - initVarName:(char *)newVarName withValue:(char *)newValue copy:(BOOL)flag
- {
-
-
- }
-
- - setVarName:(char *)newVarName copy:(BOOL)flag
- {
-
- }
-
-
- @end
-