Add umbrella header

Summary:
Import the headers for control, image, and text nodes, as well as the normal display node and helper functions. Subclass headers omitted as they are intended to be imported in subclass implementation files, not public headers.

Test Plan:
`#import <AsyncDisplayKit/AsyncDisplayKit.h>` followed some time later by:
```
ASDisplayNode *node;
ASImageNode *node2;
ASTextNode *node3;
ASControlNode *node4;
```
This commit is contained in:
Andrew Toulouse
2014-07-18 00:09:01 -07:00
parent 986fa0246a
commit 1efe3d95d6
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/* Copyright (c) 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <AsyncDisplayKit/ASControlNode.h>
#import <AsyncDisplayKit/ASDisplayNode.h>
#import <ASyncDisplayKit/ASDisplayNodeExtras.h>
#import <AsyncDisplayKit/ASImageNode.h>
#import <ASyncDisplayKit/ASTextNode.h>