Added functionality to retrieve the song cover's art from Icarus

This commit is contained in:
kdeng00
2019-11-08 22:36:16 -05:00
parent 76a6a763c6
commit 9bab2a7798
20 changed files with 431 additions and 72 deletions
+22
View File
@@ -0,0 +1,22 @@
//
// Created by brahmix on 11/8/19.
//
#ifndef MEAR_COVERART_H
#define MEAR_COVERART_H
#include <string>
namespace model {
class CoverArt {
public:
CoverArt() = default;
CoverArt(const int id, const std::string& title) :
id(id), title(title) { }
int id;
std::string title;
};
}
#endif //MEAR_COVERART_H