react-native-bt-device/ios/RNBTDevice/Device/DGMG/Algorithm/IValueManager.m

29 lines
410 B
Mathematica
Raw Normal View History

//
// 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