// // MPFractionFunctionLayout.h // MathPad // // Created by Kim Wittenburg on 07.10.14. // Copyright (c) 2014 Kim Wittenburg. All rights reserved. // #import "MPFunctionLayout.h" /*! @header This file contains the MPFractionFunctionLayout class. */ @class MPFractionFunctionLayout, MPFractionFunction; /*! @class MPFractionFunctionLayout @abstract A fraction function layout displays a @link //apple_ref/occ/cl/MPFractionFunction@/link. @discussion The nominator is displayed above the denominator. Between the two children a horizontal bar is drawn. */ @interface MPFractionFunctionLayout : MPFunctionLayout /*! @method fractionFunction @abstract Returns the @link //apple_ref/occ/cl/MPFractionFunction@/link represented by the receiver. */ - (MPFractionFunction *)fractionFunction; @end