// // MPExpressionStorage.h // MathKit // // Created by Kim Wittenburg on 22.04.14. // Copyright (c) 2014 Kim Wittenburg. All rights reserved. // #import "MPExpression.h" /*! @header This file contains the MPExpressionStorage class. */ @class MPExpressionStorage, MPExpressionView, MPExpressionLayout; /*! @class MPExpressionStorage @abstract An expression storage manages the contents of an expression view. */ @interface MPExpressionStorage : MPExpression /*! @property rootLayout @abstract The receiver's root layout. @discussion The root layout is the root node of the layout tree that draws the receiver's contents in an expression view. For more information see the documentation on the @link //apple_ref/occ/cl/MPLayout@/link class. */ @property (nonatomic, strong) MPExpressionLayout *rootLayout; @end