| 182 | |
| 183 | template <std::size_t size> |
| 184 | void writeKeyValues( |
| 185 | const QString& prefix, const char (&suffix)[size], const QStringList& values, QTextStream& stream) |
| 186 | { |
| 187 | for (const auto& v : values) |
| 188 | stream << prefix << '/' << suffix << '=' << v << '\n'; |
| 189 | } |
| 190 | |
| 191 | void writeSettings(const LauncherSettings::Settings& value, QTextStream& stream) |
| 192 | { |