mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
22 lines
412 B
Objective-C
22 lines
412 B
Objective-C
//
|
|
// File: VLKeyValueUndo.h - Automatically handle undo functionality for
|
|
// key-value paths
|
|
//
|
|
// Author(s):
|
|
//
|
|
// (MN) Matthias Neeracher
|
|
//
|
|
// Copyright © 2007 Matthias Neeracher
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface VLKeyValueUndo : NSObject {
|
|
id owner;
|
|
NSDictionary * keysAndNames;
|
|
}
|
|
|
|
- (id)initWithOwner:(id)owner keysAndNames:(NSDictionary *)keysAndNames;
|
|
|
|
@end
|