home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / FilterFunctions / SSTFCell.h < prev    next >
Text File  |  1991-09-29  |  560b  |  27 lines

  1.  
  2. /*
  3.  *      You may freely copy, distribute and reuse the code
  4.  *      in this example.  NeXT disclaims any warranty of
  5.  *      any kind, expressed or implied, as to its fitness
  6.  *      for any particular use.
  7.  *
  8.  *      Written by: Susan Rayl
  9.  *
  10.  *      Created 21-Mar-91
  11.  */
  12.  
  13. #import "FilterTextCell.h"
  14.  
  15.  
  16. @interface SSTFCell:FilterTextCell
  17. {
  18. }
  19.  
  20. /* set the ssFilter into the newTextFilter instance variable */
  21. - init;
  22.  
  23. /* specify format of the social security number entry */
  24. char *ssFilter(id textObj, char *inputText, int *inputLength, int position);
  25.  
  26. @end
  27.