MCPcopy Create free account
hub / github.com/Palm1r/QodeAssist / writeString

Method writeString

sources/tomlSerializer/TomlWriter.cpp:63–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63void TomlWriter::writeString(const QString &key, const QString &value)
64{
65 writeKeyPrefix(key);
66 m_out += QLatin1Char('"');
67 m_out += escapeBasic(value);
68 m_out += QLatin1String("\"\n");
69}
70
71void TomlWriter::writeBool(const QString &key, bool value)
72{

Callers 2

writeIdentityBlockMethod · 0.80
writeLaunchBlockMethod · 0.80

Calls 1

escapeBasicFunction · 0.85

Tested by

no test coverage detected