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/MPProductFunctionLayout.h
2017-08-31 00:04:21 +02:00

36 lines
948 B
Objective-C
Executable File

//
// MPProductFunctionLayout.h
// MathPad
//
// Created by Kim Wittenburg on 10.01.15.
// Copyright (c) 2015 Kim Wittenburg. All rights reserved.
//
#import "MPFunctionLayout.h"
@class MPProductFunctionLayout, MPProductFunction;
/*!
@class MPProductFunctionLayout
@abstract A product function layout displays a <code>@link
//apple_ref/occ/cl/MPProductFunction@/link</code>.
@discussion A product is drawn using a capital greeg pi (∏) The three
children are placed around it: The start expression below, target
expression above and product expression to the right of it.
*/
@interface MPProductFunctionLayout : MPFunctionLayout
/*!
@method productFunction
@abstract Returns the <code>@link
//apple_ref/occ/cl/MPProductFunction@/link</code> represented by
the receiver.
*/
- (MPProductFunction *)productFunction;
@end