ChipDna Mobile
Loading...
Searching...
No Matches
Currency.h
1
8#import <Foundation/Foundation.h>
9
10@interface Currency : NSObject
16@property (nonatomic, readonly)NSString *numericCode;
17
23@property (nonatomic, readonly)NSString *symbol;
24
30@property (nonatomic, readonly)NSString *charCode;
31
37@property (nonatomic, readonly)NSInteger exponent;
38
44+(Currency *)currencyForCharCode:(NSString *)charcode;
45@end
Definition: Currency.h:11
NSString * charCode
Definition: Currency.h:30
NSInteger exponent
Definition: Currency.h:37
NSString * numericCode
Definition: Currency.h:16
NSString * symbol
Definition: Currency.h:23