IOS Streaming Browser 1.0
An IOS streaming browser to stream the display to others or to a projector

/Users/willrubel/IOS-Streaming-Browser/IOS-Streaming-Browser/DDNumber.h

Go to the documentation of this file.
00001 #import <Foundation/Foundation.h>
00002 
00003 
00004 @interface NSNumber (DDNumber)
00005 
00006 
00007 /**
00008     class method
00009     Parse a string into a signed 64-bit integer
00010     param NSString
00011     param SInt64
00012     returns BOOL
00013 **/
00014 + (BOOL)parseString:(NSString *)str intoSInt64:(SInt64 *)pNum;
00015 
00016 /**
00017     class method
00018     Parse a string into an unsigned 64-bit integer
00019     param NSString
00020     param UInt64
00021     returns BOOL
00022 **/
00023 + (BOOL)parseString:(NSString *)str intoUInt64:(UInt64 *)pNum;
00024 
00025 /**
00026     class method
00027     Parse string into signed NSInteger
00028     param NSString
00029     param NSInteger
00030     returns BOOL
00031 **/
00032 + (BOOL)parseString:(NSString *)str intoNSInteger:(NSInteger *)pNum;
00033 
00034 /**
00035     class method
00036     Parse string into an unsigned NSInteger
00037     param NSString
00038     param NSUInteger
00039     returns BOOL
00040 **/
00041 + (BOOL)parseString:(NSString *)str intoNSUInteger:(NSUInteger *)pNum;
00042 
00043 @end
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Properties Defines