comparison Core/Toolbox.h @ 690:2e67366aab83

case-insensitive matching of Application Entity Titles
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Feb 2014 15:54:46 +0100
parents 2d0a347e8cfc
children 01d8611c4a60
comparison
equal deleted inserted replaced
689:2d0a347e8cfc 690:2e67366aab83
48 48
49 namespace Toolbox 49 namespace Toolbox
50 { 50 {
51 void ServerBarrier(); 51 void ServerBarrier();
52 52
53 void ToUpperCase(std::string& s); 53 void ToUpperCase(std::string& s); // Inplace version
54 54
55 void ToLowerCase(std::string& s); 55 void ToLowerCase(std::string& s); // Inplace version
56
57 void ToUpperCase(std::string& result,
58 const std::string& source);
59
60 void ToLowerCase(std::string& result,
61 const std::string& source);
56 62
57 void ReadFile(std::string& content, 63 void ReadFile(std::string& content,
58 const std::string& path); 64 const std::string& path);
59 65
60 void WriteFile(const std::string& content, 66 void WriteFile(const std::string& content,