单军华
2018-07-12 3e8437ae559487362fae3525beb79c534c213a51
screendisplay/Pods/Masonry/Masonry/MASCompositeConstraint.h
New file
@@ -0,0 +1,26 @@
//
//  MASCompositeConstraint.h
//  Masonry
//
//  Created by Jonas Budelmann on 21/07/13.
//  Copyright (c) 2013 cloudling. All rights reserved.
//
#import "MASConstraint.h"
#import "MASUtilities.h"
/**
 *   A group of MASConstraint objects
 */
@interface MASCompositeConstraint : MASConstraint
/**
 *   Creates a composite with a predefined array of children
 *
 *   @param   children   child MASConstraints
 *
 *   @return   a composite constraint
 */
- (id)initWithChildren:(NSArray *)children;
@end