Working on HTTP endpoint to delete songs. Finished with album. Need to work on the Artist, Genre, and Year aspects
This commit is contained in:
@@ -13,6 +13,8 @@ namespace manager
|
||||
model::Album retrieveAlbum(model::Album&);
|
||||
model::Album saveAlbum(const model::Song&);
|
||||
|
||||
void deleteAlbum(const model::Song&);
|
||||
|
||||
static void printAlbum(const model::Album&);
|
||||
private:
|
||||
model::BinaryPath m_bConf;
|
||||
|
||||
@@ -14,6 +14,8 @@ namespace manager
|
||||
CoverArtManager(const model::BinaryPath& bConf);
|
||||
|
||||
model::Cover saveCover(const model::Song&, std::string&, const std::string&);
|
||||
|
||||
void deleteCover(const model::Song&);
|
||||
private:
|
||||
model::BinaryPath m_bConf;
|
||||
std::string path;
|
||||
|
||||
@@ -23,6 +23,7 @@ namespace manager
|
||||
private:
|
||||
void saveSongTemp(model::Song&);
|
||||
void saveMisc(model::Song&);
|
||||
void deleteMisc(const model::Song&);
|
||||
|
||||
model::BinaryPath m_bConf;
|
||||
std::string exe_path;
|
||||
|
||||
Reference in New Issue
Block a user