| 100 | } |
| 101 | |
| 102 | ThreadParam ParseTextThreadString(QString ttString) |
| 103 | { |
| 104 | auto threadParam = ttString.splitRef(":"); |
| 105 | return { threadParam[1].toUInt(nullptr, 16), threadParam[2].toULongLong(nullptr, 16), threadParam[3].toULongLong(nullptr, 16), threadParam[4].toULongLong(nullptr, 16) }; |
| 106 | } |
| 107 | |
| 108 | std::array<InfoForExtension, 20> GetSentenceInfo(TextThread& thread) |
| 109 | { |
no outgoing calls
no test coverage detected