#import "RNNLayoutInfo.h" #import "RNNViewControllerPresenter.h" #import "RNNLeafProtocol.h" @protocol RNNLayoutProtocol @required @property (nonatomic, retain) RNNBasePresenter* presenter; @property (nonatomic, retain) RNNLayoutInfo* layoutInfo; @property (nonatomic, strong) RNNNavigationOptions* options; @property (nonatomic, strong) RNNNavigationOptions* defaultOptions; - (UIViewController *)getCurrentChild; - (UIViewController *)getCurrentLeaf; - (void)mergeOptions:(RNNNavigationOptions *)options; - (RNNNavigationOptions *)resolveOptions; - (void)setDefaultOptions:(RNNNavigationOptions *)defaultOptions; - (void)overrideOptions:(RNNNavigationOptions *)options; @end