Subversion Repositories HomeAutomation

Rev

Rev 1026 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /***************************************************************************
  2.  *   Copyright (C) 2003 by Mattias Runge                                   *
  3.  *   mattias@mrunge.se                                                     *
  4.  *                                                                         *
  5.  *   This program is free software; you can redistribute it and/or modify  *
  6.  *   it under the terms of the GNU General Public License as published by  *
  7.  *   the Free Software Foundation; either version 2 of the License, or     *
  8.  *   (at your option) any later version.                                   *
  9.  *                                                                         *
  10.  *   This program is distributed in the hope that it will be useful,       *
  11.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
  12.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
  13.  *   GNU General Public License for more details.                          *
  14.  *                                                                         *
  15.  *   You should have received a copy of the GNU General Public License     *
  16.  *   along with this program; if not, write to the                         *
  17.  *   Free Software Foundation, Inc.,                                       *
  18.  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  19.  ***************************************************************************/
  20. #ifndef _TOOLS_H
  21. #define _TOOLS_H
  22.  
  23. #include <string>
  24. #include <vector>
  25. #include <fstream>
  26. #include <sstream>
  27. #include <stdexcept>
  28. #include <iostream>
  29.  
  30. using namespace std;
  31.  
  32. #include <cmath>
  33. #include <sys/types.h>
  34. #include <dirent.h>
  35.  
  36. string niceTime();
  37. unsigned int hex2uint(string hex);
  38. string hex2bin(string hex);
  39. string bin2hex(string bin);
  40. float bin2float(string bin);
  41. string float2bin(float num, int length);
  42. unsigned int bin2uint(string bin);
  43. int bin2int(string bin);
  44. string uint2bin(unsigned int num, int length);
  45. string uint2hex(unsigned int num, int length);
  46. string int2bin(int num, int length);
  47. string int2hex(int num, int length);
  48. vector<string> explode(string delimiter, string str);
  49. string strtoupper(string s);
  50. string strtolower(string s);
  51. string trim(string s);
  52. string trim(const string s, char c);
  53. int stoi(const string s);
  54. string itos(int i);
  55. string utos(unsigned int i);
  56. unsigned int stou(const string s);
  57. float stof(const string s);
  58. string ftos(float f);
  59. string str_replace(string search, string replace, string str);
  60. string file_get_contents(string filename);
  61. bool file_exists(string filename);
  62. string escape(string in);
  63. string rpad(string in, int length, char c);
  64. string lpad(string in, int length, char c);
  65.  
  66. #endif // _TOOLS_H
  67.