Overhaul header files / includes to eliminate circular references that Xcode 7 is angry about.

This commit is contained in:
Scott Goodson
2015-12-25 19:22:00 -08:00
parent 89f9fc551f
commit a2cf2a88e6
28 changed files with 46 additions and 37 deletions

View File

@@ -6,19 +6,21 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
#ifndef ASDataController_Included
#define ASDataController_Included
#import <UIKit/UIKit.h>
#import <AsyncDisplayKit/ASDealloc2MainObject.h>
#import <AsyncDisplayKit/ASDimension.h>
#import "ASFlowLayoutController.h"
#import <AsyncDisplayKit/ASFlowLayoutController.h>
NS_ASSUME_NONNULL_BEGIN
@class ASCellNode;
@class ASDataController;
FOUNDATION_EXPORT NSString * const ASDataControllerRowNodeKind;
typedef NSUInteger ASDataControllerAnimationOptions;
FOUNDATION_EXPORT NSString * const ASDataControllerRowNodeKind;
/**
Data source for data controller
@@ -192,3 +194,5 @@ typedef NSUInteger ASDataControllerAnimationOptions;
@end
NS_ASSUME_NONNULL_END
#endif