mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2025-02-17 10:08:46 +00:00
13 lines
223 B
Objective-C
13 lines
223 B
Objective-C
#import <Foundation/NSObject.h>
|
|
|
|
@class NSMutableDictionary;
|
|
|
|
@interface CATransactionGroup : NSObject {
|
|
NSMutableDictionary *_values;
|
|
}
|
|
|
|
-valueForKey:(NSString *)key;
|
|
-(void)setValue:value forKey:(NSString *)key;
|
|
|
|
@end
|