Archived
1

Added Documentation

This commit is contained in:
Kim Wittenburg
2014-12-17 22:04:49 +01:00
parent 8f1f730358
commit 7f6ee6e118
31 changed files with 1141 additions and 533 deletions

View File

@@ -15,28 +15,31 @@
/*!
@class MPFractionFunction
@brief This class represents a fraction.
@abstract This class represents a fraction.
@discussion When a fraction is evaluated the nominator is divided by the
denominator.
@discussion A fraction has two children: the nominator and the denominator.
Typically it is displayed with a horizontal bar between the two
child expressions which are on top and below the bar
respectively. When a fraction is evaluated the nominator is
divided by the denominator.
*/
@interface MPFractionFunction : MPFunction
/*!
@property nominatorExpression
@brief The receiver's nominator.
@abstract The receiver's nominator.
@discussion The nominator must not define a variable.
*/
@property (nonatomic, strong) MPExpression *nominatorExpression;
@property (nonatomic, strong) MPExpression *nominatorExpression; /* Index 0 */
/*!
@property denominatorExpression
@brief The receiver's denominator.
@abstract The receiver's denominator.
@discussion The denominator must not define a variable.
*/
@property (nonatomic, strong) MPExpression *denominatorExpression;
@property (nonatomic, strong) MPExpression *denominatorExpression; /* Index 1 */
@end