2024-09-01 21:47:05 +00:00
|
|
|
//
|
|
|
|
|
// IValueManager.h
|
|
|
|
|
// Pods
|
|
|
|
|
//
|
|
|
|
|
// Created by Ran Zhao on 9/2/24.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef IValueManager_h
|
|
|
|
|
#define IValueManager_h
|
|
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
#import "IValue.h"
|
|
|
|
|
|
|
|
|
|
@interface IValueManager : NSObject
|
|
|
|
|
|
|
|
|
|
@property (nonatomic, strong) IValue *preIValue;
|
|
|
|
|
|
|
|
|
|
- (instancetype)init;
|
2024-09-02 18:06:27 +00:00
|
|
|
|
2024-09-01 21:47:05 +00:00
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
#endif /* IValueManager_h */
|