root/src/tvshowscanner.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef TVSHOWSCANNER_H
#define TVSHOWSCANNER_H

#include "mediascanner.h"

class Library;
class TvShowScanner : public MediaScanner
{
    Q_OBJECT
public:
    TvShowScanner(Library &library, QObject* parent = NULL);
    void scanFiles(const QStringList &files, const QDir &dir);

protected:
    Library& library;
};

#endif // TVSHOWSCANNER_H