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

41 lines
947 B
Objective-C

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