| 996 | "name"_a = name, "nameUpper"_a = str_toupper(name), "nameLower"_a = str_tolower(name)); |
| 997 | } |
| 998 | void writeToFile(const boost::filesystem::path& filename, const std::string& content) |
| 999 | { |
| 1000 | std::ofstream file(filename.string()); |
| 1001 | file << content; |
| 1002 | file.close(); |
| 1003 | } |
| 1004 | |
| 1005 | } // namespace |
| 1006 |