UniPRT SDK v1.0.0.0
 
載入中...
搜尋中...
無符合項目
IPglCmd.h
1//
2// IPglCmd.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/23.
6//
7
8#ifndef IPglCmd_h
9#define IPglCmd_h
10
11#import <UniPRT/IPglParamLine.h>
12
15@protocol IPglCmd <NSObject>
16
17@required
18@property (nonatomic, assign) BOOL useSfcc;
19@property (nonatomic, strong) NSString *CMD;
20@property (nonatomic, strong) NSString *cmdSuffix;
21@property (nonatomic, strong) NSMutableArray<id<IPglParamLine>> *parameterLines;
22
23- (void)clearParameterLines;
24- (id<IPglParamLine>)getNewParameterLineWithStartOfLine:(NSString *)startOfLine endOfLine:(NSString *)endOfLine;
25- (NSString *)description;
26- (NSString *)getAsString;
27
28@end
29
32#endif /* IPglCmd_h */
33