25 lines
390 B
Objective-C
25 lines
390 B
Objective-C
//
|
|
// 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;
|
|
- (IValue *)getPreIValue;
|
|
- (void)setPreIValue:(IValue *)preIValue;
|
|
|
|
@end
|
|
|
|
#endif /* IValueManager_h */
|