UniPRT SDK v2.0.0.0
 
Loading...
Searching...
No Matches
IPicture.h
1//
2// IPicture.h
3// UniPRT
4//
5
6#import <Foundation/Foundation.h>
7#import <UniPRT/IPoint.h>
8#import <UniPRT/IRuler.h>
9
10NS_ASSUME_NONNULL_BEGIN
11
25@protocol IPicture <NSObject>
26
30@property (nonatomic, strong) id<IRuler> Ruler;
31
35@property (nonatomic, strong) id<IPoint> Start;
36
40@property (nonatomic, copy) NSString *ImageName;
41
42@optional
43- (NSString *)description;
44
45@end
46
47NS_ASSUME_NONNULL_END
48
NSString * ImageName
Definition IPicture.h:40
id< IRuler > Ruler
Definition IPicture.h:30
NSString * description()
id< IPoint > Start
Definition IPicture.h:35