33 lines
580 B
Objective-C
33 lines
580 B
Objective-C
//
|
|
// MPFractionTerm.h
|
|
// MathKit
|
|
//
|
|
// 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>MPFractionTerm</code> class.
|
|
*/
|
|
|
|
|
|
|
|
@class MPFractionTerm;
|
|
|
|
|
|
/*!
|
|
@class MPFractionTerm
|
|
@abstract Represens a <code>@link
|
|
//apple_ref/occ/cl/MPFractionFunction@/link</code>.
|
|
|
|
@discussion A fraction is evaluating by dividing the nominator by the
|
|
denominator.
|
|
*/
|
|
@interface MPFractionTerm : MPFunctionTerm
|
|
|
|
@end
|