react-native-bt-device/ios/RNBTDevice/Device/DGMG/Algorithm/ParamX.h

30 lines
582 B
C
Raw Normal View History

//
// ParamX.h
// Pods
//
// Created by Ran Zhao on 9/2/24.
//
#ifndef ParamX_h
#define ParamX_h
#import <Foundation/Foundation.h>
@interface ParamX : NSObject
@property (nonatomic, assign) double X1;
@property (nonatomic, assign) double X2;
@property (nonatomic, assign) double X3;
@property (nonatomic, assign) double X4;
@property (nonatomic, assign) double X5;
@property (nonatomic, assign) int X6;
@property (nonatomic, assign) int X7;
@property (nonatomic, assign) double X8;
@property (nonatomic, assign) double X9;
- (instancetype)init;
@end
#endif /* ParamX_h */