// // MPParenthesisFunctionLayout.h // MathPad // // Created by Kim Wittenburg on 17.09.14. // Copyright (c) 2014 Kim Wittenburg. All rights reserved. // #import "MPFunctionLayout.h" /*! @header This file contains the MPParenthesisFunctionLayout class. */ @class MPParenthesisFunctionLayout, MPParenthesisFunction; /*! @class MPParenthesisFunctionLayout @abstract A parenthesis function layout displays a @link //apple_ref/occ/cl/MPParenthesisFunction@/link. @discussion The child of the parenthesis function is encapsulated by standard parenthesis that are scaled to the smae height as the child. */ @interface MPParenthesisFunctionLayout : MPFunctionLayout /*! @method parenthesisFunction @abstract Returns the @link //apple_ref/occ/cl/MPParenthesisFunction@/link represented by the receiver. */ - (MPParenthesisFunction *)parenthesisFunction; @end