18 lines
342 B
Objective-C
18 lines
342 B
Objective-C
//
|
|
// MPParsedOperator.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 13.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "MPParsedFactor.h"
|
|
|
|
@interface MPParsedOperator : NSObject <MPParsedFactor>
|
|
|
|
- (NSUInteger)numberOfOperators;
|
|
- (NSDecimalNumber *)multiplicator;
|
|
|
|
@end
|