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/MPPowerTerm.h
Kim Wittenburg 7438fd1f95 Added Lots of Documentation
Added some nice to haves
Improved and Unified General Code Layout
2015-01-04 02:54:27 +01:00

42 lines
823 B
Objective-C

//
// MPPowerTerm.h
// MathPad
//
// Created by Kim Wittenburg on 15.11.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import "MPFunctionTerm.h"
/*!
@header
This file contains the <code>MPPowerTerm</code> class.
*/
@class MPPowerTerm, MPTerm;
/*!
@class MPPowerTerm
@abstract Represents a <code>@link
//apple_ref/occ/cl/MPPowerFunction@/link</code>.
@discussion A power function is evaluated using the C <code>pow</code>
function.
*/
@interface MPPowerTerm : MPFunctionTerm
/*!
@property baseTerm
@abstract The base of the power.
@discussion This value is set during the evaluation of the power term and
should be considered very volatile.
*/
@property (nonatomic, strong) MPTerm *baseTerm;
@end