home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / Draw / textUndo.subproj / TextChange.h < prev    next >
Text File  |  1992-02-09  |  273b  |  16 lines

  1. /*
  2.  * This is the ancestor of all text changes. This class simply records
  3.  * the id of the text object to be changed.
  4.  */
  5.  
  6. @interface TextChange : Change
  7. {
  8.     id textView;                        /* pointer to Text View */
  9. }
  10.  
  11. /* Creatio2tthod */
  12.  
  13. - initView:aView;
  14.  
  15. @end
  16.