// // MPExpressionLayout.h // MathPad // // Created by Kim Wittenburg on 07.08.14. // Copyright (c) 2014 Kim Wittenburg. All rights reserved. // #import "MPLayout.h" @class MPExpressionLayout, MPExpression, MPFunctionLayout; @interface MPExpressionLayout : MPLayout - (instancetype)initWithExpression:(MPExpression *)expression parent:(MPFunctionLayout *)parent; @property (readonly, nonatomic, weak) MPExpression *expression; @end