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/MPParenthesisFunctionLayout.h
2015-01-04 22:16:27 +01:00

41 lines
1008 B
Objective-C

//
// MPParenthesisFunctionLayout.h
// MathKit
//
// Created by Kim Wittenburg on 17.09.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import "MPFunctionLayout.h"
/*!
@header
This file contains the <code>MPParenthesisFunctionLayout</code> class.
*/
@class MPParenthesisFunctionLayout, MPParenthesisFunction;
/*!
@class MPParenthesisFunctionLayout
@abstract A parenthesis function layout displays a <code>@link
//apple_ref/occ/cl/MPParenthesisFunction@/link</code>.
@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 <code>@link
//apple_ref/occ/cl/MPParenthesisFunction@/link</code> represented
by the receiver.
*/
- (MPParenthesisFunction *)parenthesisFunction;
@end