mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-26 21:40:44 +00:00
13 lines
232 B
Objective-C
13 lines
232 B
Objective-C
#import <Foundation/NSObject.h>
|
|
|
|
@class NSMutableDictionary;
|
|
|
|
@interface CATransactionGroup : NSObject {
|
|
NSMutableDictionary *_values;
|
|
}
|
|
|
|
- valueForKey: (NSString *) key;
|
|
- (void) setValue: value forKey: (NSString *) key;
|
|
|
|
@end
|