Subsonic API: added bookmark support. Fixes #24

This commit is contained in:
emeric
2020-01-29 17:02:18 +01:00
parent 0ef6f82732
commit 8d62df00ef
10 changed files with 351 additions and 7 deletions
+2 -1
View File
@@ -19,6 +19,7 @@
#include <map>
#include <string>
#include <string_view>
#include <vector>
@@ -178,7 +179,7 @@ class Response
class Node
{
public:
void setAttribute(const std::string& key, const std::string& value);
void setAttribute(std::string_view key, std::string_view value);
// A Node has either a value or some children
void setValue(const std::string& value);