UniPRT SDK v1.0.0.0
 
载入中...
搜索中...
未找到
ATsplCmd.h
1//
2// ATsplCmd.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/9.
6//
7
8#ifndef ATsplCmd_h
9#define ATsplCmd_h
10
11// ATsplCmd.h
12#import <Foundation/Foundation.h>
13 // Assuming this is the concrete implementation
14#import <UniPRT/ITsplCmd.h>
15#import <UniPRT/ITsplParamLine.h>
16#import <UniPRT/TsplParamLine.h>
17
20@interface ATsplCmd : NSObject <ITsplCmd>
21
22@property (nonatomic, strong) NSMutableArray<id<ITsplParamLine>> *parameterLines;
23@property (nonatomic, strong) NSString *CMD;
24
25- (instancetype)init;
26- (instancetype)initWithCmd:(NSString *)cmd;
27- (instancetype)initWithCmd:(NSString *)cmd cmdSuffix:(NSString *)cmdSuffix;
28- (instancetype)initWithUseSfcc:(BOOL)useSfcc cmd:(NSString *)cmd cmdSuffix:(NSString *)cmdSuffix;
29
30- (void)clearParameterLines;
31- (id<ITsplParamLine>)getNewParameterLineWithStartOfLine:(NSString *)startOfLine endOfLine:(NSString *)endOfLine;
32- (NSString *)getAsString;
33
34@end
35
37#endif /* ATsplCmd_h */