Files
MacPass/MacPass/StringField+Undo.h
michael starke db30d641f2 Added Undo/Redo for string field editing
Fixed #26 - Entries now can be added to the rout group
2013-06-28 18:39:24 +02:00

24 lines
479 B
Objective-C

//
// StringField+Undo.h
// MacPass
//
// Created by Michael Starke on 28.06.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "Kdb4Node.h"
APPKIT_EXTERN NSString *const MPStringFieldKeyUndoableKey;
APPKIT_EXTERN NSString *const MPStringFieldValueUndoableKey;
@interface StringField (Undo)
- (NSString *)keyUndoable;
- (NSString *)valueUndoable;
- (void)setKeyUndoable:(NSString *)key;
- (void)setValueUndoable:(NSString *)value;
@end