Skip to content
Permalink
353a65f4d2
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
30 lines (18 sloc) 540 Bytes
//
// LTCodecsDocOptions.h
// Leadtools.Codecs
//
// Copyright (c) 1991-2020 LEAD Technologies, Inc. All rights reserved.
//
NS_ASSUME_NONNULL_BEGIN
NS_CLASS_AVAILABLE(10_10, 8_0)
@interface LTCodecsDocLoadOptions : NSObject
@property (nonatomic, assign) NSInteger bitsPerPixel;
- (instancetype)init __unavailable;
@end
NS_CLASS_AVAILABLE(10_10, 8_0)
@interface LTCodecsDocOptions : NSObject
@property (nonatomic, strong, readonly) LTCodecsDocLoadOptions *load;
- (instancetype)init __unavailable;
@end
NS_ASSUME_NONNULL_END