1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-01 08:52:45 +00:00

WIP: Refractor C++-side. Loader should be working again

This commit is contained in:
Chris Josten 2021-03-25 17:32:00 +01:00
parent 2360b261f7
commit 9643482ae1
840 changed files with 100813 additions and 23560 deletions

View file

@ -80,7 +80,16 @@ QJsonValue toJsonValue(const QList<T> &source) {
return result;
}
}
/**
* Templates for string conversion.
*/
template <typename T>
QString toString(const T &source) {
return toJsonValue(source).toString();
}
} // NS Support
} // NS Jellyfin
#endif // JSONCONV_H