18 lines
292 B
C++
18 lines
292 B
C++
#ifndef GENREREPOSITORY_H_
|
|
#define GENREREPOSITORY_H_
|
|
|
|
#include "database/base_repository.h"
|
|
#include "models/models.h"
|
|
|
|
namespace Database
|
|
{
|
|
class genreRepository : public base_repository
|
|
{
|
|
public:
|
|
genreRepository(const Model::BinaryPath&);
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|