VocalEasel/Sources/VLKeyValueUndo.h

22 lines
412 B
C
Raw Normal View History

2006-12-04 07:04:24 +00:00
//
2007-04-27 06:41:34 +00:00
// File: VLKeyValueUndo.h - Automatically handle undo functionality for
// key-value paths
2006-12-04 07:04:24 +00:00
//
2007-04-27 06:41:34 +00:00
// Author(s):
//
// (MN) Matthias Neeracher
//
// Copyright © 2007 Matthias Neeracher
2006-12-04 07:04:24 +00:00
//
#import <Cocoa/Cocoa.h>
@interface VLKeyValueUndo : NSObject {
id owner;
NSDictionary * keysAndNames;
}
- (id)initWithOwner:(id)owner keysAndNames:(NSDictionary *)keysAndNames;
@end