home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Draw / graphicsUndo.subproj / DimensionsGraphicsChange.m < prev    next >
Text File  |  1995-11-28  |  258b  |  20 lines

  1. #import "drawundo.h"
  2.  
  3. @interface DimensionsGraphicsChange(PrivateMethods)
  4.  
  5. @end
  6.  
  7. @implementation DimensionsGraphicsChange
  8.  
  9. - (NSString *)changeName
  10. {
  11.     return DIMENSION_OP;
  12. }
  13.  
  14. - (Class)changeDetailClass
  15. {
  16.     return [DimensionsChangeDetail class];
  17. }
  18.  
  19. @end
  20.