home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.bin / SourceCode / Palettes / TTools / TToolsPalette / Strings.subproj / String.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-09  |  469 b   |  25 lines

  1. /* String.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9. #import <appkit/appkit.h>
  10.  
  11. @interface String:Object
  12. {
  13.     char *buffer;
  14. }
  15.  
  16. - init;
  17.  
  18. - read:(NXTypedStream *)aStream;
  19. - write:(NXTypedStream *)aStream;
  20. - free;
  21.  
  22. - setStringValue:(const char *)aString;
  23. - (const char *)stringValue;
  24.  
  25. @end