00001 #ifndef _LCD_UTILS_H_ 00002 #define _LCD_UTILS_H_ 00003 00004 #include <stdio.h> 00005 #include <string> 00006 00007 class LCDUtils 00008 { 00009 public: 00010 static std::string toString(int value) 00011 { 00012 char buf[64]; 00013 sprintf(buf, "%d", value ); 00014 return buf; 00015 } 00016 }; 00017 00018 #endif