Files
icarus/include/managers/artistManager.h
T
2019-09-01 16:56:52 -04:00

18 lines
255 B
C++

#ifndef ARTISTMANAGER_H_
#define ARTISTMANAGER_H_
#include "models/models.h"
namespace Manager
{
class artistManager
{
public:
artistManager(const Model::BinaryPath&);
private:
Model::BinaryPath m_bConf;
};
}
#endif