Added Manager namespace

This commit is contained in:
kdeng00
2019-09-01 14:14:46 -04:00
parent d44a5bb1bc
commit d16b8dc3c9
12 changed files with 94 additions and 83 deletions
+10 -7
View File
@@ -5,14 +5,17 @@
#include "models/models.h"
class coverArtManager
namespace Manager
{
public:
coverArtManager(const std::string&);
class coverArtManager
{
public:
coverArtManager(const std::string&);
Model::Cover saveCover(const Model::Song&, std::string&, const std::string&);
private:
std::string path;
};
Model::Cover saveCover(const Model::Song&, std::string&, const std::string&);
private:
std::string path;
};
}
#endif