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

19 lines
300 B
C++

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