IGListKit/Tests/Objects/IGLayoutTestItem.h
Maxime Ollivier 23bcc5c7c0 created IGListCollectionView
Summary: * IGListCollectionView passes update information to IGListCollectionViewLayout.

Reviewed By: rnystrom

Differential Revision: D6510139

fbshipit-source-id: ada194d009eca7f308887ec592ecc41fb9557855
2017-12-15 09:33:39 -08:00

20 lines
550 B
Objective-C

/**
* Copyright (c) 2016-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 <UIKit/UIKit.h>
#define genLayoutTestItem(s) [[IGLayoutTestItem alloc] initWithSize:s]
@interface IGLayoutTestItem : NSObject
@property (nonatomic, assign, readonly) CGSize size;
- (instancetype)initWithSize:(CGSize)size;
@end