Tidied up code, going to put up the coding convention later on
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#ifndef GENREMANAGER_H_
|
||||
#define GENREMANAGER_H_
|
||||
|
||||
#include "model/Models.h"
|
||||
|
||||
namespace manager
|
||||
{
|
||||
class GenreManager
|
||||
{
|
||||
public:
|
||||
GenreManager(const model::BinaryPath&);
|
||||
|
||||
model::Genre retrieveGenre(model::Genre&);
|
||||
model::Genre saveGenre(const model::Song&);
|
||||
|
||||
static void printGenre(const model::Genre&);
|
||||
private:
|
||||
model::BinaryPath m_bConf;
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user