API Subsonic: Adding playlist support

This commit is contained in:
emeric
2019-04-12 14:00:05 +02:00
parent 366420013f
commit fdbac7f444
10 changed files with 555 additions and 228 deletions
+7
View File
@@ -54,6 +54,13 @@ bool readList(const std::string& str, const std::string& separators, std::list<s
return !str.empty();
}
template<>
boost::optional<std::string>
readAs(const std::string& str)
{
return str;
}
std::vector<std::string>
splitString(const std::string& string, const std::string& separators)
{