home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / RZToDoList / Source / ToDoBrowserCell.m < prev    next >
Encoding:
Text File  |  1995-06-12  |  506 b   |  28 lines

  1. /* 
  2.  * ToDoBrowserCell - subclass of RZBrowserCell that adds an object id
  3.  *
  4.  * You may freely copy, distribute and reuse the code in this example.
  5.  * This code is provided AS IS without warranty of any kind, expressed 
  6.  * or implied, as to its fitness for any particular use.
  7.  *
  8.  * Copyright 1995 Ralph Zazula (rzazula@next.com).  All Rights Reserved.
  9.  *
  10.  */
  11.  
  12. #import "ToDoBrowserCell.h"
  13.  
  14. @implementation ToDoBrowserCell
  15.  
  16. - setItem:anItem
  17. {
  18.     item = anItem;
  19.     return self;
  20. }
  21.  
  22. - item
  23. {
  24.     return item;
  25. }
  26.  
  27. @end
  28.