mirror of
https://github.com/zhigang1992/PINRemoteImage.git
synced 2026-03-29 07:47:52 +08:00
23 lines
412 B
Objective-C
23 lines
412 B
Objective-C
//
|
|
// PINRemoteImageMemoryContainer.h
|
|
// Pods
|
|
//
|
|
// Created by Garrett Moon on 3/17/16.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "PINRemoteImageMacros.h"
|
|
#import "PINRemoteLock.h"
|
|
|
|
@class PINImage;
|
|
|
|
@interface PINRemoteImageMemoryContainer : NSObject
|
|
|
|
@property (nonatomic, strong) PINImage *image;
|
|
@property (nonatomic, strong) NSData *data;
|
|
@property (nonatomic, strong) PINRemoteLock *lock;
|
|
|
|
@end
|