UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
PglLine.h
1//
2// PglLine.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/23.
6//
7
8#ifndef PglLine_h
9#define PglLine_h
10
11//
12// PglLine.h
13// sdk_json_Objective-C
14//
15// Created by Realbuber on 2024/5/23.
16//
17
18#import <Foundation/Foundation.h>
19#import <UniPRT/PglCmd.h>
20#import <UniPRT/PGL.h>
21
22NS_ASSUME_NONNULL_BEGIN
23
26@interface PglLine : NSObject
27
28@property (nonatomic, assign) int LT;
29@property (nonatomic, assign) int SR;
30@property (nonatomic, assign) int SC;
31@property (nonatomic, assign) int ER;
32@property (nonatomic, assign) int EC;
33
34- (instancetype)initWithLT:(int)lt SR:(int)sr SC:(int)sc ER:(int)er EC:(int)ec;
35- (NSString *)description;
36
37@end
38
41NS_ASSUME_NONNULL_END
42
43#endif /* PglLine_h */