home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Headers / misckit / MiscTextExtensions.h < prev    next >
Encoding:
Text File  |  1995-04-12  |  833 b   |  26 lines

  1. //
  2. //    MiscTextExtensions.h -- extensions to the NeXT Text object
  3. //        Originally written by Scott Anguish
  4. //        Copyright (c) 1994 by Scott Anguish.
  5. //        Modified and extended by Don Yacktman for inclusion into the MiscKit.
  6. //                Version 1.0.  All rights reserved.
  7. //        This notice may not be removed from this source code.
  8. //
  9. //    This object is included in the MiscKit by permission from the author
  10. //    and its use is governed by the MiscKit license, found in the file
  11. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  12. //    for a list of all applicable permissions and restrictions.
  13. //    
  14.  
  15. @class MiscString;
  16.  
  17. #import <appkit/Text.h>
  18.  
  19. @interface Text(MiscExtensions)
  20.  
  21. - (MiscString *)getContentString;
  22. - (MiscString *)getSelectionString;
  23. - (MiscString *)getSubstringStringStart:(int)startPos length:(int)numChars;
  24.  
  25. @end
  26.