Main Page | Modules | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Examples

LCDUtils.h

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

Generated on Wed Aug 4 19:39:09 2004 for LCDApi by doxygen 1.3.6