00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00022
00024
00035 #include <string>
00036 #include <ostream>
00037
00038 #ifndef DigitConverter_INCLUDED
00039 #define DigitConverter_INCLUDED
00040
00041 class DigitConverter{
00042
00043 private:
00044
00045 std::string _input;
00046
00047 bool _isASCII( void );
00048 void _normalize( void );
00049
00050 static const char *_digits[];
00051 static const char *_ArabicIndicDigits[];
00052
00053
00054
00055 static const int TABLE_SIZE=220;
00056
00057 public:
00058
00059
00060 DigitConverter(const char *p,int stt, int end);
00061 DigitConverter(const char *p);
00062 DigitConverter(const std::string &input);
00063
00064
00065
00066 void set(const char *p, int stt, int end);
00067 void set(const char *p);
00068 void set(const std::string &input);
00069
00070
00071 const std::string get( void ) const;
00072
00073 };
00074
00075 std::ostream& operator<<(std::ostream& s, const DigitConverter& dc);
00076
00077 #endif
00078