Working on interfacing with the database. Could do queryies via string/cstring but I'm going to try prepared statements
This commit is contained in:
@@ -1,13 +1,18 @@
|
||||
#ifndef COVERARTMANAGER_H_
|
||||
#define COVERARTMANAGER_H_
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "models/models.h"
|
||||
|
||||
class coverArtManager
|
||||
{
|
||||
public:
|
||||
coverArtManager(const std::string&);
|
||||
|
||||
Cover saveCover(const Song&, std::string&, const std::string&);
|
||||
private:
|
||||
std::string path;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -13,13 +13,6 @@ class song_manager
|
||||
public:
|
||||
song_manager(std::string&);
|
||||
|
||||
/**
|
||||
std::string retrieveMusicPath();
|
||||
std::string retrieveTempPath();
|
||||
*/
|
||||
|
||||
//nlohmann::json pathConfigContent();
|
||||
|
||||
void saveSong(Song&);
|
||||
|
||||
static void printSong(const Song&);
|
||||
|
||||
Reference in New Issue
Block a user