//
// MPSumFunctionLayout.h
// MathKit
//
// Created by Kim Wittenburg on 23.04.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import "MPFunctionLayout.h"
/*!
@header
This file contains the MPSumFunctionLayout class.
*/
@class MPSumFunctionLayout, MPSumFunction;
/*!
@class MPSumFunctionLayout
@abstract A sum function layout displays a @link
//apple_ref/occ/cl/MPSumFunction@/link.
@discussion A sum is drawn using a capital greeg sigma (∑) The three children
are placed around it: The start expression below, target
expression above and sum expression to the right of it.
*/
@interface MPSumFunctionLayout : MPFunctionLayout
/*!
@method sumFunction
@abstract Returns the @link
//apple_ref/occ/cl/MPSumFunction@/link represented by the
receiver.
*/
- (MPSumFunction *)sumFunction;
@end