//
// MPRootFunctionLayout.h
// MathPad
//
// Created by Kim Wittenburg on 11.01.15.
// Copyright (c) 2015 Kim Wittenburg. All rights reserved.
//
#import "MPFunctionLayout.h"
/*!
@header
This file contains the MPRootFunctionLayout class.
*/
@class MPRootFunctionLayout, MPRootFunction;
/*!
@class MPRootFunctionLayout
@abstract A root function layout displays a @link
//apple_ref/occ/cl/MPRootFunction@/link.
@discussion A root function is displayed in a very special way. In a way it
can be described as an exponent at the left, a "V" in the middle
and the expression that is to be rooted at the right with a bar
over it.
*/
@interface MPRootFunctionLayout : MPFunctionLayout
/*!
@method rootFunction
@abstract Returns the @link
//apple_ref/occ/cl/MPRootFunction@/link represented by the
receiver.
*/
- (MPRootFunction *)rootFunction;
@end