Source-highlight Library
|
00001 // 00002 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2006 00003 // 00004 // Copyright: See COPYING file that comes with this distribution 00005 // 00006 // 00007 #ifndef UTILS_H 00008 #define UTILS_H 00009 00010 #include <string> 00011 00012 namespace srchilite { 00013 00017 class Utils{ 00018 public: 00023 static void toUpper(std::string &s); 00024 00029 static void toLower(std::string &s); 00030 00036 static std::string toupper(const std::string &s); 00037 00043 static std::string tolower(const std::string &s); 00044 00045 }; 00046 00047 } 00048 00049 #endif