Working on updating a song's metadata

This commit is contained in:
kdeng00
2019-09-11 22:12:41 -04:00
parent a00a70029e
commit 0a97f695e3
3 changed files with 51 additions and 5 deletions
+4
View File
@@ -6,6 +6,7 @@
#include <nlohmann/json.hpp>
#include "dto/SongDto.hpp"
#include "model/Models.h"
namespace manager
@@ -18,6 +19,9 @@ namespace manager
void saveSong(model::Song&);
void deleteSong(model::Song&);
void updateSong(model::Song&);
static model::Song songDtoConv(dto::SongDto::ObjectWrapper&);
static void printSong(const model::Song&);
private: