home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Draw / graphicsUndo.subproj / MoveGraphicsChange.h < prev    next >
Text File  |  1995-08-06  |  268b  |  14 lines

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