//
// 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 @link
//apple_ref/occ/cl/MPProductFunction@/link.
@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 @link
//apple_ref/occ/cl/MPProductFunction@/link represented by
the receiver.
*/
- (MPProductFunction *)productFunction;
@end