Files
icarus/include/managers/coverArtManager.h
T

14 lines
203 B
C++

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