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