Skip to content

Commit a5ac670

Browse files
Adlai Hollergarrettmoon
authored andcommitted
Make public headers more public (#323)
1 parent 4085dca commit a5ac670

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

PINRemoteImage.xcodeproj/project.pbxproj

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -788,14 +788,30 @@
788788
name = "Supporting Files";
789789
sourceTree = "<group>";
790790
};
791+
CC4243F61E62051900FD6517 /* Categories */ = {
792+
isa = PBXGroup;
793+
children = (
794+
F1B918DE1BCF23C800710963 /* NSData+ImageDetectors.h */,
795+
F1B918DF1BCF23C800710963 /* NSData+ImageDetectors.m */,
796+
);
797+
path = Categories;
798+
sourceTree = "<group>";
799+
};
791800
F165DFD61BD021E30008C6E8 /* Public */ = {
792801
isa = PBXGroup;
793802
children = (
794803
F1B918E41BCF23C800710963 /* Image Categories */,
804+
CC4243F61E62051900FD6517 /* Categories */,
805+
68CA92801DB19C06008BECE2 /* PINCache */,
795806
F1B918EF1BCF23C800710963 /* PINRemoteImage.h */,
807+
68F0EA8E1CB32EC900F1FD41 /* PINAlternateRepresentationProvider.h */,
808+
68F0EA8F1CB32EC900F1FD41 /* PINAlternateRepresentationProvider.m */,
809+
68CA92851DB19C2F008BECE2 /* PINAnimatedImage.h */,
810+
68CA92861DB19C2F008BECE2 /* PINAnimatedImage.m */,
796811
F165DFD81BD0504A0008C6E8 /* PINRemoteImageMacros.h */,
797812
F1B918ED1BCF23C800710963 /* PINProgressiveImage.h */,
798813
F1B918EE1BCF23C800710963 /* PINProgressiveImage.m */,
814+
68CA927B1DAEFF93008BECE2 /* PINRemoteImageCaching.h */,
799815
F1B918F21BCF23C800710963 /* PINRemoteImageCategoryManager.h */,
800816
F1B918DC1BCF23C800710963 /* PINRemoteImageCategoryManager.m */,
801817
F1B918F51BCF23C800710963 /* PINRemoteImageManager.h */,
@@ -812,10 +828,7 @@
812828
F165DFD71BD021EE0008C6E8 /* Project */ = {
813829
isa = PBXGroup;
814830
children = (
815-
68CA92801DB19C06008BECE2 /* PINCache */,
816831
F1B918DD1BCF23C800710963 /* Categories */,
817-
68CA92851DB19C2F008BECE2 /* PINAnimatedImage.h */,
818-
68CA92861DB19C2F008BECE2 /* PINAnimatedImage.m */,
819832
68CA92871DB19C2F008BECE2 /* PINAnimatedImageManager.h */,
820833
68CA92881DB19C2F008BECE2 /* PINAnimatedImageManager.m */,
821834
F1B918EB1BCF23C800710963 /* PINDataTaskOperation.h */,
@@ -830,13 +843,10 @@
830843
F1B918FC1BCF23C800710963 /* PINRemoteImageTask.m */,
831844
6858C0731C9CC5BA00E420EB /* PINRemoteLock.h */,
832845
6858C0741C9CC5BA00E420EB /* PINRemoteLock.m */,
833-
68F0EA8E1CB32EC900F1FD41 /* PINAlternateRepresentationProvider.h */,
834-
68F0EA8F1CB32EC900F1FD41 /* PINAlternateRepresentationProvider.m */,
835846
68F0EA901CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.h */,
836847
68F0EA911CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.m */,
837848
68CA92791DAEFF93008BECE2 /* PINRemoteImageBasicCache.h */,
838849
68CA927A1DAEFF93008BECE2 /* PINRemoteImageBasicCache.m */,
839-
68CA927B1DAEFF93008BECE2 /* PINRemoteImageCaching.h */,
840850
);
841851
name = Project;
842852
path = Classes;
@@ -880,8 +890,6 @@
880890
children = (
881891
68A6B1D91E5248BF003A92D1 /* PINImage+ScaledImage.m */,
882892
68A6B1DA1E5248BF003A92D1 /* PINImage+ScaledImage.h */,
883-
F1B918DE1BCF23C800710963 /* NSData+ImageDetectors.h */,
884-
F1B918DF1BCF23C800710963 /* NSData+ImageDetectors.m */,
885893
9DD47FA01C699FDC00F12CA0 /* PINImage+DecodedImage.h */,
886894
9DD47FA11C699FDC00F12CA0 /* PINImage+DecodedImage.m */,
887895
9DD47FA21C699FDC00F12CA0 /* PINImage+WebP.h */,

Source/Classes/PINRemoteImage.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,22 @@
11
//
22
// PINRemoteImage.h
3-
// Pods
43
//
54
// Created by Garrett Moon on 8/17/14.
65
//
76
//
87

9-
#ifndef Pods_PINRemoteImage_h
10-
#define Pods_PINRemoteImage_h
11-
128
#import "PINRemoteImageMacros.h"
139

1410
#if USE_PINCACHE
1511
#import "PINCache+PINRemoteImageCaching.h"
1612
#endif
1713

14+
#import "NSData+ImageDetectors.h"
15+
#import "PINAlternateRepresentationProvider.h"
16+
#import "PINAnimatedImage.h"
1817
#import "PINRemoteImageManager.h"
1918
#import "PINRemoteImageCategoryManager.h"
2019
#import "PINRemoteImageManagerResult.h"
2120
#import "PINRemoteImageCaching.h"
2221
#import "PINProgressiveImage.h"
2322
#import "PINURLSessionManager.h"
24-
25-
#endif

0 commit comments

Comments
 (0)