| 7 | namespace Star { |
| 8 | |
| 9 | inline String toSString(QString const& str) { |
| 10 | return String(str.toUtf8().data()); |
| 11 | } |
| 12 | |
| 13 | inline QString toQString(String const& str) { |
| 14 | return QString::fromUtf8(str.utf8Ptr(), str.utf8Size()); |
no test coverage detected