home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Examples / DatabaseKit / Formatter / DateFormatter.m < prev    next >
Encoding:
Text File  |  1992-12-20  |  464 b   |  21 lines

  1. /* DateFormatter.m:
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  *
  6.  * Written by Scott Weiner, NeXT Developer Training
  7.  *
  8.  */
  9.  
  10. #import "DateFormatter.h"
  11. #import "DateTFCell.h"
  12.  
  13. @implementation DateFormatter
  14.     - init
  15.     {
  16.         [super init];
  17.         [drawCell free];
  18.         drawCell = [DateTFCell allocFromZone:[self zone]];
  19.         return self;
  20.     }
  21.