Files
icarus/include/managers/coverArtManager.h
T

19 lines
286 B
C++

#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