home *** CD-ROM | disk | FTP | other *** search
- #import "drawundo.h"
-
- @interface ArrowGraphicsChange(PrivateMethods)
-
- @end
-
- @implementation ArrowGraphicsChange
-
- - initGraphicView:aGraphicView lineArrow:(int)anArrowValue
- {
- [super initGraphicView:aGraphicView];
- arrowValue = anArrowValue;
- return self;
- }
-
- - (const char *)changeName
- {
- return NXLocalStringFromTable("Operations", "Arrows", NULL, "The operation of adding or removing arrows from a line.");
- }
-
- - changeDetailClass
- {
- return [ArrowChangeDetail class];
- }
-
- - (int)lineArrow
- {
- return arrowValue;
- }
-
- @end
-