home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 (1993) / nebula.bin / SourceCode / MiniExamples / FilterFunctions / TimeTFCell.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-29  |  548 b   |  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 TimeTFCell:FilterTextCell
  17. {
  18. }
  19.  
  20. /* set the timeFilter into the newTextFilter instance variable */
  21. - init;
  22.  
  23. /* specify format of the time entry */
  24. char *timeFilter(id textObj, char *inputText, int *inputLength, int position);
  25.  
  26. @end
  27.