Files
icarus/include/managers/coverArtManager.h
T
2019-09-01 16:16:06 -04:00

24 lines
446 B
C++

#ifndef COVERARTMANAGER_H_
#define COVERARTMANAGER_H_
#include <string>
#include "models/models.h"
namespace Manager
{
class coverArtManager
{
public:
coverArtManager(const std::string&);
coverArtManager(const Model::BinaryPath& bConf);
Model::Cover saveCover(const Model::Song&, std::string&, const std::string&);
private:
Model::BinaryPath m_bConf;
std::string path;
};
}
#endif