Able to save and retrieve records (Artist, Album, Genre, etc.)
This commit is contained in:
@@ -94,6 +94,8 @@ namespace Model
|
||||
{
|
||||
BinaryPath() = default;
|
||||
BinaryPath(const char *p) : path(std::move(p)) { }
|
||||
BinaryPath(std::string& p) : path(std::move(p)) { }
|
||||
BinaryPath(const std::string& p) : path(std::move(p)) { }
|
||||
std::string path;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user