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:
kdeng00
2019-08-23 23:16:42 -04:00
parent 764185da7d
commit 9281293fad
9 changed files with 70 additions and 36 deletions
+5
View File
@@ -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