Able to save song and cover art to the appropriate paths. Next is saving it to the database
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
class base_repository
|
||||
{
|
||||
public:
|
||||
protected:
|
||||
MYSQL* setup_mysql_connection(database_connection);
|
||||
|
||||
MYSQL_RES* perform_mysql_query(MYSQL*, const std::string&);
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
#ifndef COVERARTREPOSITORY_H_
|
||||
#define COVERARTREPOSITORY_H_
|
||||
|
||||
#include <mysql/mysql.h>
|
||||
|
||||
#include "models/models.h"
|
||||
|
||||
class coverArtRepository
|
||||
{
|
||||
public:
|
||||
private:
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,14 @@
|
||||
#ifndef SONGREPOSITORY_H_
|
||||
#define SONGREPOSITORY_H_
|
||||
|
||||
#include <mysql/mysql.h>
|
||||
|
||||
#include "models/models.h"
|
||||
|
||||
class songRespository
|
||||
{
|
||||
public:
|
||||
private:
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user