29 lines
410 B
Objective-C
29 lines
410 B
Objective-C
//
|
|
// IValueManager.m
|
|
// react-native-bt-device
|
|
//
|
|
// Created by Ran Zhao on 9/2/24.
|
|
//
|
|
|
|
#import "IValueManager.h"
|
|
|
|
@implementation IValueManager
|
|
|
|
- (instancetype)init {
|
|
self = [super init];
|
|
if (self) {
|
|
self.preIValue = nil;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (IValue *)getPreIValue {
|
|
return self.preIValue;
|
|
}
|
|
|
|
- (void)setPreIValue:(IValue *)preIValue {
|
|
self.preIValue = preIValue;
|
|
}
|
|
|
|
@end
|