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