// // IValueManager.h // Pods // // Created by Ran Zhao on 9/2/24. // #ifndef IValueManager_h #define IValueManager_h #import #import "IValue.h" @interface IValueManager : NSObject @property (nonatomic, strong) IValue *preIValue; - (instancetype)init; - (IValue *)getPreIValue; - (void)setPreIValue:(IValue *)preIValue; @end #endif /* IValueManager_h */