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

  1. @interface MoveGraphicsChange : SimpleGraphicsChange
  2. {
  3.     NXPoint    undoVector;
  4.     NXPoint    redoVector;
  5. }
  6.  
  7. - initGraphicView:aGraphicView vector:(const NXPoint *)aVector;
  8. - (const char *)changeName;
  9. - changeDetailClass;
  10. - (const NXPoint *)undoVector;
  11. - (const NXPoint *)redoVector;
  12.  
  13. @end
  14.