/[projects]/smsdaemon/Util.h
ViewVC logotype

Diff of /smsdaemon/Util.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 107 by torben, Thu Jun 19 14:47:52 2008 UTC revision 678 by torben, Tue Apr 27 21:06:53 2010 UTC
# Line 9  struct timeval; Line 9  struct timeval;
9    
10  namespace Util  namespace Util
11  {  {
12            //use whitespace
13            std::vector<std::string> str_split(std::string input);
14    
15          std::vector<std::string> str_split(std::string input, std::string delimiter);          std::vector<std::string> str_split(std::string input, std::string delimiter);
16          void str_dump(const std::string& str);          void str_dump(const std::string& str);
17    
# Line 27  namespace Util Line 30  namespace Util
30          std::string str_gsm2latin(std::string str);          std::string str_gsm2latin(std::string str);
31          std::string str_latin2gsm(std::string str);          std::string str_latin2gsm(std::string str);
32    
33          std::string readUrl(std::string url, std::string tempfile);  //  Deprecated:: use HttpClient instead
34    //      std::string readUrl(std::string url, std::string tempfile);
35    
36            std::string iconv_wrapper(std::string _input, std::string to_format, std::string from_format);
37    
38          std::string convertToUnicode(std::string);          std::string convertToUnicode(std::string);
39          std::string convertFromUnicode(std::string);          std::string convertFromUnicode(std::string);
# Line 38  namespace Util Line 44  namespace Util
44          timeval GetTimeOfDay();          timeval GetTimeOfDay();
45    
46          int my_system(const char* cmd, std::string* response = 0);          int my_system(const char* cmd, std::string* response = 0);
47            int my_system2(const char* cmd);
48    
49            std::string readfile(std::string filename);
50    
51          inline void Sleep(unsigned int msec)          inline void Sleep(unsigned int msec)
52          {          {
53              for (unsigned int i=0; i<msec; ++i)                  if (msec < 1000)
54                  usleep(1000);                  {
55                            usleep(1000*msec);
56                    }
57                    else
58                    {
59                            for (unsigned int i=0; i<msec; ++i)
60                                    usleep(1000);
61                    }
62          }          }
63    
64  }  }

Legend:
Removed from v.107  
changed lines
  Added in v.678

  ViewVC Help
Powered by ViewVC 1.1.20