17 lines
298 B
Objective-C
17 lines
298 B
Objective-C
//
|
|
// MPParsedNumber.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 MPParsedNumber : NSObject <MPParsedFactor>
|
|
|
|
- (NSDecimalNumber *)number;
|
|
|
|
@end
|