mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
20 lines
493 B
Objective-C
20 lines
493 B
Objective-C
#import "PGPhotoEditorItem.h"
|
|
|
|
@class PGPhotoFilterDefinition;
|
|
@class PGPhotoProcessPass;
|
|
|
|
@interface PGPhotoFilter : NSObject <PGPhotoEditorItem, NSCopying>
|
|
{
|
|
PGPhotoProcessPass *_pass;
|
|
}
|
|
|
|
@property (nonatomic, readonly) PGPhotoFilterDefinition *definition;
|
|
@property (nonatomic, retain) PGPhotoProcessPass *pass;
|
|
@property (nonatomic, readonly) PGPhotoProcessPass *optimizedPass;
|
|
|
|
- (void)invalidate;
|
|
|
|
+ (PGPhotoFilter *)filterWithDefinition:(PGPhotoFilterDefinition *)definition;
|
|
|
|
@end
|