Added Documentation
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user