PINRemoteImageMemoryContainer.h 412 B

1234567891011121314151617181920212223
  1. //
  2. // PINRemoteImageMemoryContainer.h
  3. // Pods
  4. //
  5. // Created by Garrett Moon on 3/17/16.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "PINRemoteImageMacros.h"
  10. #import "PINRemoteLock.h"
  11. @class PINImage;
  12. @interface PINRemoteImageMemoryContainer : NSObject
  13. @property (nonatomic, strong) PINImage *image;
  14. @property (nonatomic, strong) NSData *data;
  15. @property (nonatomic, strong) PINRemoteLock *lock;
  16. @end