UniPRT SDK v1.0.0.0
 
载入中...
搜索中...
未找到
ITsplCmd.h
1//
2// ITsplCmd.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/9.
6//
7
8#ifndef ITsplCmd_h
9#define ITsplCmd_h
10
11// ITsplCmd.h
12#import <Foundation/Foundation.h>
13#import <UniPRT/ITsplParamLine.h>
14
15@protocol ITsplCmd <NSObject>
16
17@required
18@property (nonatomic, strong) NSString *CMD;
19@property (nonatomic, strong) NSMutableArray<id<ITsplParamLine>> *parameterLines;
20
21- (void)clearParameterLines;
22- (id<ITsplParamLine>)getNewParameterLineWithStartOfLine:(NSString *)startOfLine endOfLine:(NSString *)endOfLine;
23- (NSString *)getAsString;
24- (NSString *)description;
25
26@end
27
28#endif /* ITsplCmd_h */