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