Archived
1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mathpad/MathKit/MPRootFunctionLayout.h
2017-08-31 00:04:21 +02:00

43 lines
1.0 KiB
Objective-C
Executable File

//
// 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 <code>MPRootFunctionLayout</code> class.
*/
@class MPRootFunctionLayout, MPRootFunction;
/*!
@class MPRootFunctionLayout
@abstract A root function layout displays a <code>@link
//apple_ref/occ/cl/MPRootFunction@/link</code>.
@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 <code>@link
//apple_ref/occ/cl/MPRootFunction@/link</code> represented by the
receiver.
*/
- (MPRootFunction *)rootFunction;
@end